Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

vim-coffee-scriptを使うときの.vimrc

$
0
0

vim-coffee-scriptを使う際の.vimrc設定

必要条件

  • vim 7.4 以降
  • coffeescript 1.2.0 以降

インストール方法(NeoBundle)

  1. 下記を.vimrcに追記する
Bundle 'kchmck/vim-coffee-script'
  1. vim内コマンドモードで下記コマンドを実行する
:BundleInstall

.vimrc

Bundle 'kchmck/vim-coffee-script'" vimにcoffeeファイルタイプを認識させるauBufRead,BufNewFile,BufReadPre *.coffee   setfiletype=coffee
" インデント設定autocmdFileType coffee    setlocalsw=2sts=2ts=2et" オートコンパイル"保存と同時にコンパイルするautocmdBufWritePost *.coffee silentmake!"エラーがあったら別ウィンドウで表示autocmdQuickFixCmdPost * nested cwindow|redraw!" Ctrl-cで右ウィンドウにコンパイル結果を一時表示するnnoremap<silent><C-C> :CoffeeCompile vert<CR><C-w>h

参考文書


Viewing all articles
Browse latest Browse all 5608

Trending Articles