LoginSignup
3
3

More than 5 years have passed since last update.

neocomplcache のスニペットを書くのに役立つスニペット

Last updated at Posted at 2012-03-14
snippet.snip
delete      snip
snippet     snippet
alias       snip
abbr        snippet
    snippet ${1:name}
    abbr    ${2:abbr}
    ${0}

neocomplcache-snippets-complete には,一応 snip というスニペットがデフォルトでありますが,prev_word を設定していて汎用性に欠けるので,より汎用的なものを作りました.
snippet.snipというファイル名で保存して,保存したディレクトリへのパスを g:neocomplcache_snippets_dir で設定して下さい.
スニペットに alias を頻繁に定義する場合は

snippet.snip
delete      snip
snippet     snippet
alias       snip
abbr        snippet
    snippet ${1:name}
    alias   ${2:alias}
    abbr    ${3:abbr}
    ${0}

というふうにすると良いです.

3
3
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
3
3