mirror of
https://github.com/preservim/nerdtree.git
synced 2024-11-23 08:46:52 +08:00
Merge pull request #150 from cperl82/issue-144
Replace virtcol() with len() in handleLeftClick().
This commit is contained in:
commit
d62180d0ff
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user