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