a bunch of little tweaks for working on smaller screens and other readibility things

This commit is contained in:
2025-02-19 22:01:19 -07:00
parent 0db79302d7
commit af6c15c774
7 changed files with 26 additions and 11 deletions

View File

@ -26,6 +26,8 @@ function ExecuteCommand(args = '', output = '', flavor = 'shell', syntax = 'bash
elseif output == 'split-pane-vertical'
execute "botright vertical terminal " . command
let &l:syntax=a:syntax
elseif output == 'insert'
execute "read! " . command
else
execute "!" . command
endif
@ -60,7 +62,7 @@ function GetCommandString(args, flavor, output)
echom command
endif
if stridx(a:output, 'split-pane') == -1
if a:output == ''
let command = "clear; ".command
endif