Hi,
As mentioned in the title, how do I run a shell command in NeoVim in the background/silently, without affecting my current buffer or opening up new buffers?
The reason I’m asking this is I’m currently set up Common Lisp dev environment and I need to run this in the background (to connect to SWANK server):
! xterm -e sbcl --load /usr/share/common-lisp/source/slime/start-swank.lisp &
but looks like it does nothing.
I tried to manually run this in NeoVim by :! xterm -e sbcl --load /usr/share/common-lisp/source/slime/start-swank.lisp &
but nothing happened. No further output either.
I know that there are a few ways to run a command in the background and there’s even a plugin for that, but what is the recommended way, ideally without installing another plugin? Please help, thanks!