Skip to content

Commit

Permalink
fix: configuration function
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Levy-Falk committed Apr 17, 2023
1 parent b6843ae commit 22e5fa6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion autoload/slime_neovim.vim
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ function! slime_neovim#config(config)
if exists("g:slime_get_jobid")
let a:config["neovim"]["jobid"] = g:slime_get_jobid()
else
let a:config["neovim"]["jobid"] = input("jobid: ", b:slime_config["jobid"])
let a:config["neovim"]["jobid"] = input("jobid: ", a:config["neovim"]["jobid"])
end
return a:config
endfunction

function! slime_neovim#send(config, text)
Expand Down

0 comments on commit 22e5fa6

Please sign in to comment.