Vimで変数とオプションの確かめ方を調べたのでメモしておく。
設定がちゃんと通っているか確かめたいという時に便利。
変数 (Variable)
:let samplevariable ='foo':echo samplevariable
foo
結果はfooと表示されます。
オプション (Option)
:settextwidth=80:echo &textwidth80
結果は80と表示されます。
注意すべき点は、オプションを呼び出すときは前に&
をつけることです。
参考
http://learnvimscriptthehardway.stevelosh.com/chapters/19.html