We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f00e04a commit 649df90Copy full SHA for 649df90
autoload/arduino.vim
@@ -61,8 +61,8 @@ function! arduino#InitializeConfig() abort
61
if !exists('g:arduino_use_slime')
62
let g:arduino_use_slime = 0
63
endif
64
- if !exists('g:arduino_use_tmux') || !exists('$TMUX')
65
- let g:arduino_use_tmux = 0
+ if !exists('g:arduino_use_vimux') || !exists('$TMUX')
+ let g:arduino_use_vimux = 0
66
67
68
if !exists('g:arduino_run_headless')
@@ -87,7 +87,7 @@ endfunction
87
function! arduino#RunCmd(cmd) abort
88
if g:arduino_use_slime
89
call slime#send(a:cmd . "\r")
90
- elseif g:arduino_use_tmux
+ elseif g:arduino_use_vimux
91
call VimuxRunCommand(a:cmd)
92
else
93
exe s:TERM . a:cmd
0 commit comments