Skip to content

Commit 8bf14fc

Browse files
committed
fix off-by-one error
1 parent b2f91e6 commit 8bf14fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/vimlparser.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2759,7 +2759,7 @@ function! s:ExprTokenizer.get2()
27592759
call r.seek_cur(2)
27602760
return self.token(s:TOKEN_RAWCOPEN, '#{', pos)
27612761
else
2762-
call r.seek_cur(2)
2762+
call r.seek_cur(1)
27632763
return self.token(s:TOKEN_SHARP, '#', pos)
27642764
endif
27652765
elseif c ==# '('

0 commit comments

Comments
 (0)