Skip to content

Commit

Permalink
Update obsolete jobsend() to chansend()
Browse files Browse the repository at this point in the history
  • Loading branch information
sakhnik committed Feb 12, 2018
1 parent dfb9715 commit 27cb4a5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions autoload/nvimgdb.vim
Expand Up @@ -2,8 +2,6 @@ sign define GdbBreakpoint text=●
sign define GdbCurrentLine text=


let s:gdb_port = 7778
let s:run_gdb = "gdb -q -f build/bin/nvim"
let s:breakpoints = {}
let s:max_breakpoint_sign_id = 0

Expand Down Expand Up @@ -71,7 +69,7 @@ endfunction


function! s:Gdb.send(data)
call jobsend(self._client_id, a:data."\<cr>")
call chansend(self._client_id, a:data."\<cr>")
endfunction


Expand Down

0 comments on commit 27cb4a5

Please sign in to comment.