基本的に私が欲しいのは、現在編集中の C、C++、または Python プログラムを [コンパイルして] 実行できる vim のキーボード ショートカットです。擬似コード:
when a shortcut key is pressed:
if current_extension == 'c' then
shell: gcc this_filename.c -o this_filename_without_extension
if retcode == 0 then shell: ./this_filename_without_extension
else if current_extension == 'cpp' then
shell: g++ this_filename.cpp -o this_filename_without_extension
if retcode == 0 then shell: ./this_filename_without_extension
else if current_extension == 'py' then
shell: python this_filename.py
end if
end key
私は少し多くを求めているかもしれませんが、これが可能であればそれが大好きです!