We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab9bc34 commit acb4a99Copy full SHA for acb4a99
autoload/arduino.vim
@@ -673,8 +673,11 @@ function! arduino#GetInfo() abort
673
echo "Port : " . port
674
echo "Baud rate : " . g:arduino_serial_baud
675
echo "Hardware dirs : " . dirs
676
- echo "Verify command: " . arduino#GetArduinoCommand("--verify")
677
- echo "CLI command : " . arduino#GetCLICompileCommand()
+ if g:arduino_use_cli
+ echo "Verify command: " . arduino#GetCLICompileCommand()
678
+ else
679
+ echo "Verify command: " . arduino#GetArduinoCommand("--verify")
680
+ endif
681
endfunction
682
683
" vim:fen:fdm=marker:fmr={{{,}}}
0 commit comments