Merge pull request #150 from cperl82/issue-144

Replace virtcol() with len() in handleLeftClick().
This commit is contained in:
Martin Grenfell 2012-10-15 05:55:21 -07:00
commit d62180d0ff

View File

@ -4134,7 +4134,7 @@ function! s:handleLeftClick()
"take the line substring manually
let line = split(getline(line(".")), '\zs')
let startToCur = ""
for i in range(0,virtcol(".")-1)
for i in range(0,len(line)-1)
let startToCur .= line[i]
endfor