Skip to content

Commit

Permalink
Only send 1 NL
Browse files Browse the repository at this point in the history
  • Loading branch information
tsung-ju committed Jul 5, 2024
1 parent 99350e6 commit 649fca7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autoload/vimtex/compiler/texpresso.vim
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ endfunction
function! s:compiler.texpresso_send(...) abort dict " {{{1
if !self.is_running() | return | endif
if has('nvim')
call chansend(self.job, json_encode(a:000) .. "\n\n")
call chansend(self.job, json_encode(a:000) .. "\n")
else
call ch_sendraw(self.job, json_encode(a:000) .. "\n\n")
call ch_sendraw(self.job, json_encode(a:000) .. "\n")
endif
endfunction
" }}}1
Expand Down

0 comments on commit 649fca7

Please sign in to comment.