From a557d35a4399c68d18b7e55b159c099b775a0269 Mon Sep 17 00:00:00 2001 From: Strahinja Val Markovic Date: Sun, 29 Apr 2012 20:48:55 -0700 Subject: [PATCH] Updating some comments --- autoload/youcompleteme.vim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/autoload/youcompleteme.vim b/autoload/youcompleteme.vim index b3181302..b14f89b7 100644 --- a/autoload/youcompleteme.vim +++ b/autoload/youcompleteme.vim @@ -28,10 +28,8 @@ function! youcompleteme#Enable() augroup youcompleteme autocmd! - " Things are breaking currently, so until then, autocmds are commented out autocmd CursorMovedI * call s:OnMovedI() autocmd BufRead,BufEnter * call s:SetCompleteFunc() - " TODO first add the tests :) autocmd CursorHold,CursorHoldI * py csystem.AddBufferIdentifiers() augroup END @@ -120,6 +118,7 @@ EOF " 7.3.475. It's possible that patch 404 was the one that fixed this issue, " but I haven't tested this assumption. let dict = { 'words' : results } + " A bug in vim causes the '.' register to break when we use set this... sigh let dict.refresh = 'always' return dict endif