Fix #349 - minor bug
This commit is contained in:
parent
88847e895d
commit
7aac7ee48f
@ -57,6 +57,7 @@ endfunction
|
|||||||
|
|
||||||
function! vimtex#text_obj#delimiters(...) " {{{1
|
function! vimtex#text_obj#delimiters(...) " {{{1
|
||||||
let [l:open, l:close] = vimtex#delim#get_surrounding('delim_all')
|
let [l:open, l:close] = vimtex#delim#get_surrounding('delim_all')
|
||||||
|
if empty(l:open) | return | endif
|
||||||
call s:text_obj_delim(l:open, l:close, a:0 > 0)
|
call s:text_obj_delim(l:open, l:close, a:0 > 0)
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
@ -65,7 +66,7 @@ function! vimtex#text_obj#environments(...) " {{{1
|
|||||||
let l:inner = a:0 > 0
|
let l:inner = a:0 > 0
|
||||||
|
|
||||||
let [l:open, l:close] = vimtex#delim#get_surrounding('env')
|
let [l:open, l:close] = vimtex#delim#get_surrounding('env')
|
||||||
if l:open.type !=# 'env' | return | endif
|
if empty(l:open) || l:open.type !=# 'env' | return | endif
|
||||||
|
|
||||||
if l:inner
|
if l:inner
|
||||||
call cursor(l:open.lnum, l:open.cnum + strlen(l:open.match))
|
call cursor(l:open.lnum, l:open.cnum + strlen(l:open.match))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user