概要 †
メモ †vimのタブ系のコマンド.http://qiita.com/tekkoc/items/98adcadfa4bdc8b5a6ca noremapは,「vimの標準のものにマップする」という意味http://cocopon.me/blog/?p=3871 Vimの分割を平均的にする :new :q Vimの便利コマンドは検索したほうがいいかも.MとかHとか
q †
NeoBundle? †
mkdir -p ~.vim/bundle git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim
"--------------------------- " Start Neobundle Settings. "--------------------------- " bundleで管理するディレクトリを指定 set runtimepath+=~/.vim/bundle/neobundle.vim/ " Required: call neobundle#begin(expand('~/.vim/bundle/')) " neobundle自体をneobundleで管理 NeoBundleFetch 'Shougo/neobundle.vim' " 今後このあたりに追加のプラグインをどんどん書いて行きます!!" " 例 " NERDTreeを設定 NeoBundle 'scrooloose/nerdtree' call neobundle#end() " Required: filetype plugin indent on " 未インストールのプラグインがある場合、インストールするかどうかを尋ねてくれるようにする設定 " 毎回聞かれると邪魔な場合もあるので、この設定は任意です。 NeoBundleCheck "------------------------- " End Neobundle Settings. "-------------------------
vimsnippet †
vi a.cpp[enter] for[tab]int[tab]i[tab]0[tab]10[tab]cout<<i<<endl;[esc]
|