various vim plugin tweaks

This commit is contained in:
2024-06-26 18:37:28 -06:00
parent 1b71221ca5
commit c93dcace2b
7 changed files with 11 additions and 10 deletions

View File

@ -51,7 +51,7 @@ function QuickREPL(repl = '')
let b:quick_repl = l:repl
let l:output = get(g:quickrepl_output_format_overrides_by_repl_command, l:repl, g:quickrepl_output_format_default)
let l:repl_args = get(g:quickrepl_repl_command_args, l:repl, '')
let l:repl_args = get(g:quickrepl_repl_command_args_by_repl_command, l:repl, '')
call ExecuteCommand(l:repl . ' ' . l:repl_args, l:output)
endfunction