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.
これは、ファイルを保存するたびにテストを自動的に実行したいためです。
私は見ましたがautocmd、BufWritePostそれを機能させることはできません。
autocmd
BufWritePost
これはrun_tests.sh、現在のファイル名を唯一のパラメーターとして、ファイルが保存された後に実行されます。
run_tests.sh
:autocmd BufWritePost * !run_tests.sh <afile>
次のコマンドを使用して自動コマンドを表示します。
:autocmd BufWritePost *
そして、前のものからすべての自動コマンドを削除します:
:autocmd! BufWritePost *