Sebastian
Sebastian
I see. I take from this that this is not possible yet (I might have overlooked this functionality)? Would you in general say that this is a sensible idea? Anyway...
The "g" was just a random example which I didn't put thought into, my focus was more on the general concept, so of course this can be chosen more wisely....
Ok, I didn't really suggest a change in the mapping. Again, above were just examples, key-bindings could be done such that they are staying the same. Such as send selection...
I've in fact spotted `RSend` in the documentation, but couldn't make it to work as an operator. How could you for example achieve `2ap`, i.e. send 2 paragraphs?
Just checked tried your PR. I have no idea how to get `RSend` to work as an operator, but the obove `nmap RSend` does not seem to work, hitting i.e....
That's certainly going in the right direction. However it seems only to work for lines paragraphs. I.e. `sip` sends correctly a paragraph, but `siw` sends the whole line rather than...
Update. Since there hasn't been more feedback, I've found a more integrated solution using [neoterm](https://github.com/kassio/neoterm) at least for neovim/vim at newer versions (i.e. support `:terminal`). One of the things that...
Yes, it basically just adds neoterm functionality without loosing any Nvim-R functionality. You just have to watch out for mapping conflicts. I've been using this approach for a bit now,...
Indeed, I've tried it including the update fold first (prefixing `:FastFoldUpdate`), but it didn't work for some reason. Excluding it does work as in the PR (have you tried it?),...
You almost got there, you just have to map a key to it, such as `s` in my case: ``` nmap s (neoterm-repl-send) ``` Which makes it vim-like, i.e. `sip`...