reply.vim icon indicating copy to clipboard operation
reply.vim copied to clipboard

REPLs play nicely with :terminal on Vim and Neovim

Results 8 reply.vim issues
Sort by recently updated
recently updated
newest added

say for python I want REPL to be ipython3, I've defined this in vimrc ``` let g:reply_repls = { 'python': ['ipython3'] } ``` still I got: ``` reply.vim: No REPL...

When running a ReplSend that runs over multiple lines it is sometimes favorable to have a short delay. It could be per character, or maybe per linefeed. The delays could...

Possible to support ipython. The ptpython support is great but ipython (and bpython) would be excellent additions I would very much appreciate.

Hi there, thanks for this plugin! Is there a way to remove extra line when sending the code to the REPL? For example: ``` mysum = 0 for i in...

bug

Please note TODO in the file stack_ghci.vim

Is it possible to find out whether a REPL has already been created for a given buffer? I'd like to have a mapping which either creates a new REPL for...

It seems that `reply.vim` isn't considering this given configuration. ```VimL function! s:define_pgsql_repl() abort return reply#repl#base('psql', { \ 'prompt_start': '\v^\w+\=# ', \ 'prompt_continue': '\v^\w+\-# ', \ }) endfunction let g:reply_repls =...

When `Repl` is invoked with buffer/window modifiers, they got ignored and terminal window is positioned topleft. > :vertical botright Repl Instead of vertical bottom-right, terminal is placed top-left, no matter...