간단히 말해서 if를 쓰고 탭키를 누르면 if(..){} 이런식으로 바꿔주는 스크립트

http://www.vim.org/scripts/script.php?script_id=1318

에서 snippy_plugin.vba, snippy_bundles.vba를 받아서 .vim/plugin/에 넣고
두 파일을 각각 vim으로 열어서 :so % 엔터.

이제 vi열어서 if하고 탭키를 치면 if문 블록이 생긴다.
그후 탭키를 누르면 다음칸으로 이동~

출처: http://hacker.golbin.net/zb/1981


License
달리 정하지 않는 한, 이 저작물 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
Except where otherwise noted, this content is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 2.0 Korea License
http://www.vim.org/scripts/script.php?script_id=1879

~/.vim/plugin/ 에 다운받은 autocomplpop.vim를 넣는다

~/.vimrc 에 아래 내용을 붙여넣는다.(없으면 새로만든다)
function! InsertTabWrapper()
  let col = col('.') - 1
  if !col || getline('.')[col-1]!~'\k'
    return "\<TAB>"
  else
    if pumvisible()
      return "\<C-N>"
    else
      return "\<C-N>\<C-P>"
    end
  endif
endfunction

출처 및 참고: http://monac.egloos.com/1936134


License
달리 정하지 않는 한, 이 저작물 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
Except where otherwise noted, this content is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 2.0 Korea License

+ Recent posts