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