6

私は Vim を初めて使用します。この初心者の質問で申し訳ありません。vim プラグインvim-indent-guidesを使用しています

プラグインを切り替えるデフォルトのマッピングは<leader>ig. vim起動時にオンにするには、どのような変更を加える必要がありますか

4

4 に答える 4

7

プラグインがその構成でサポートする可能性のあるもののように聞こえます。Vim プラグインは通常、次のようなものを配置して構成されます

let g:global_variable_for_plugin = 1

あなたの~/.vimrc

見よ、vim-indent-guides のドキュメントから:

Use this option to control whether the plugin is enabled on Vim startup.

Default: 0. Values: 0 or 1.
>
  let g:indent_guides_enable_on_vim_startup = 0
<
于 2012-12-03T13:07:21.857 に答える
4

What you need is to run the following command at vim startup

:IndentGuidesEnable

One of the ways is to add an autocommand to your .vimrc like

au VimEnter * IndentGuidesEnable

There are probably other ways but this looks pretty simple for me.

于 2012-12-03T04:25:42.537 に答える
0

これはずっと前の質問ですが、単なる更新であることは知っています。選択した回答は Neovim では機能しません。これを修正するには、これを .vimrc に追加します。

autocmd VimEnter * :IndentGuidesEnable

于 2016-06-15T02:35:03.480 に答える