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.
:pwd現在の作業ディレクトリ(返されるものは何でも)を渡すVCSStatus関数を呼び出したいと思います。フルパスである必要があり、「。」などの特殊文字は使用できません。受け入れられます。
:pwd
:execute 'VCSStatus' getcwd()
トリックを行う必要があります。代わりに現在のファイルのディレクトリを使用したい場合は、次のようになります。
:execute 'VCSStatus' expand('%:p:h')
(%現在のファイルを参照し:p、完全な絶対パスに変更し:h、ファイル名を切り取ります; cp。:help filename-modifiers)
%
:p
:h
:help filename-modifiers