I'm using a neovim plugin called conjure which can attach to a swank server for interactive evaluation. I want to use this plugin in conjunction with mondo. This works very nicely, but its a bit of an annoying procedure:
- start a swank server with
ros run --eval '(ql:quickload :swank)' --eval '(swank:create-server :dont-close t)
- attach mondo to that server with
mondo -p 4005
- attach nvim to the swank server
It would be great if mondo could start it's own swank server on port 4005 and attach to that so I don't need step 1 here.
I'm using a neovim plugin called conjure which can attach to a swank server for interactive evaluation. I want to use this plugin in conjunction with mondo. This works very nicely, but its a bit of an annoying procedure:
ros run --eval '(ql:quickload :swank)' --eval '(swank:create-server :dont-close t)mondo -p 4005It would be great if mondo could start it's own swank server on port 4005 and attach to that so I don't need step 1 here.