Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
vimでpythonスクリプトを実行しようとしています。以下のコードを取得して、プラグイン フォルダーの python.vim に配置しました。
map <buffer> <S-e> :w<CR>:!/usr/bin/env python % <CR>
しかし、それはLinuxのようです。それを微調整してWin7を使いこなす方法はありますか? ありがとう!
試すmap <buffer> <S-e> :w<CR>:!C:\Python27\python.exe % <CR>
map <buffer> <S-e> :w<CR>:!C:\Python27\python.exe % <CR>
どうmap :w:!C:/path/to/your/python %ですか?
map :w:!C:/path/to/your/python %
の直後に python.exe パスを配置する必要があり!ます。例えば:
!
map :w:!C:\Python27\python.exe %