A vertical split is opened to the right, and it display (non-interactively) sniprun output
Can be closed with :SnipClose
(or a shortcut to <Plug>SnipClose
)
Highlighting is not supported yet
if you experience wrapping of the header line '---- OK ---' due to the presence of a number column, you can (and should anyway) set
autocmd TermOpen * setlocal nonu
in your configuration.
To activate, add "Terminal" to the 'display' key in sniprun configuration:
lua << EOF
require'sniprun'.setup({
display = { "Terminal" },
})
EOF
You can change the width of the terminal by using the display option in the configuration:
display_options = {
terminal_width = 45, -- change the terminal display option width
},
If you also want to print the code being executed to the 'terminal', then use "TerminalWithCode"
instead in the 'display' key.