Updating some comments

This commit is contained in:
Strahinja Val Markovic 2012-04-29 20:48:55 -07:00
parent d9299175aa
commit a557d35a43

View File

@ -28,10 +28,8 @@ function! youcompleteme#Enable()
augroup youcompleteme augroup youcompleteme
autocmd! autocmd!
" Things are breaking currently, so until then, autocmds are commented out
autocmd CursorMovedI * call s:OnMovedI() autocmd CursorMovedI * call s:OnMovedI()
autocmd BufRead,BufEnter * call s:SetCompleteFunc() autocmd BufRead,BufEnter * call s:SetCompleteFunc()
" TODO first add the tests :)
autocmd CursorHold,CursorHoldI * py csystem.AddBufferIdentifiers() autocmd CursorHold,CursorHoldI * py csystem.AddBufferIdentifiers()
augroup END augroup END
@ -120,6 +118,7 @@ EOF
" 7.3.475. It's possible that patch 404 was the one that fixed this issue, " 7.3.475. It's possible that patch 404 was the one that fixed this issue,
" but I haven't tested this assumption. " but I haven't tested this assumption.
let dict = { 'words' : results } let dict = { 'words' : results }
" A bug in vim causes the '.' register to break when we use set this... sigh
let dict.refresh = 'always' let dict.refresh = 'always'
return dict return dict
endif endif