0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Vim のプラグインマネージャ Volt で plugconf に記述した処理が実行されない

Posted at

問題点

下記のサイトを見て Vim のカスタマイズをしていました。

Vimのプラグインマネージャ「Volt」を使おう - BLog

プラグイン毎の設定は plugconf/ 内の foo.vim に記述する事ができるので、 .vimrc の記述量を減らし、プラグインに依存した設定を書かなくて良くなります。

今回、とあるプラグインが読み込まれた後の設定を記述したかったので、 foo.vim 内の s:on_load_post() に処理を記述しましたが、どうも処理が走っていないようでした。

解決方法

色々調べた結果、下記サイトを見て解決しました。

plugconf is not read - gitMemory

plugconf/ 内の処理を反映させるには、 volt build する必要があるようです。

zsh
% volt build

これで無事に処理が反映されました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?