Jonathan Palardy
Jonathan Palardy
I think - the second one `:echo $SHELL` is an echo done by vim … with the `$SHELL` expanded in vim - the first one, is shelling out (and failing),...
Hi @jlc-backsbag Thanks for reporting this ☝️ I'm not a ipython user myself — let's keep this open and see if other users want to chime in.
Hi @YodaEmbedding Technically, you can already do all these by picking the object/motion before pressing `` If not, check [these lines](https://github.com/jpalardy/vim-slime/blob/main/plugin/slime.vim#L16-L21) and [how people might have mapped them](https://github.com/search?q=slimemotionsend&type=code) already. Let...
Hi @nickeisenberg Cursor save/restore goes through https://github.com/jpalardy/vim-slime/blob/main/plugin/slime.vim#L16 A few things: - your `g:slime_preserve_curpos` is unset or set to 1? - what key binding are you using?
Before pressing c-c c-c, do you select text? What I see - inside a paragraph, c-c/c-c, cursor stays where it is - select text, cursor on first line, c-c/c-c, cursor...
> Is there a way to instead map [...] ? Definitely 😄 But is `'>` what you _always_ want to do after c-c/c-c? I've done [something similar](https://github.com/jpalardy/dotfiles/blob/main/vim/plugins.vim#L28) to step through...
Excellent — I'm glad you found a working combination 🎉
Hi @xxyxxyxyx1 Of all the REPLs out there, python is the one that caused the most problems. I would recommend trying different permutations until you can isolate the problem: -...
In the case of python itself, what would it take to fix bracketed mode?
Hi @fredrikekre You can check the issues and pull requests … similar ideas have been proposed ([for example](https://github.com/jpalardy/vim-slime/pull/353)) If that's not what you meant, we can discuss alternatives. If you...