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 に統合された cscope を使用して、大規模なコード ベースをナビゲートします。:E コマンドを使用して、ディレクトリ構造をナビゲートできます。しかし、ナビゲートした特定のディレクトリでシェルを開くにはどうすればよいですか?
これを:cd %:p:h 行う簡単な方法はありますか?
:cd %:p:h
一部のset autochdirプラグインに影響を与える可能性があるため、これを使用してディレクトリを自動変更できます。
set autochdir
autocmd BufEnter * silent! lcd %:p:h
楽しめ。