-
In https://github.com/kassio/neoterm/blob/6dd6bf66375d3959acab1378ffcd46ef370c2725/autoload/neoterm/repl.vim#L67, the line
```
call g:neoterm.repl.instance().exec(add(a:command, ""))
```
is sufficie…
-
When opening neoterm with, for example, `:T ls`, I get the following messages:
Error detected while processing functio neoterm#do[2]..neoterm#exec[1]..neoterm#open[5]..56[2]..neoterm#window#reo…
-
Send current block of code, instead of just a single line.
I don't know how this would work in every REPL, but it could probably be done relatively easy in `pry`.
This would be more helpful than…
-
I would like to specify initial buffer width / height when new buffer is created.
It could be like:
``` VimL
let g:neoterm_vertical_size = 80
```
which would result into something like:
``` VimL
v…
-
Consider the following `init.vim` file:
```vim
set nocompatible
let $DOTVIM = expand('$HOME/.vim')
set runtimepath+=$DOTVIM/bundle/repos/github.com/kassio/neoterm
filetype plugin indent on
…
-
Currently I have F-12 mapped to :Ttoggle which is great for being able to jump back and forth, but sometimes I want to leave my terminal open and switch back to a buffer to edit. To get back to the te…
-
Consider the following minimal `init.vim`
```vim
set nocompatible
let $DOTVIM = expand('$HOME/.vim')
set runtimepath+=$DOTVIM/bundle/repos/github.com/kassio/neoterm
filetype plugin indent o…
-
### Issue
Edit a test python source file but flooded by a heap of error
-->
### Steps to reproduce
nvim learnpy.py
```
Here is my Init.vim (neovim):
I use the similar dotfile from the github
…
-
When running `:T ls|grep foo`, `|` is treated as a command separator, and `grep foo` is executed as a vim command.
The following change fixes the issue for me:
``` diff
diff --git a/plugin/neot…
-
I'm not sure which plugin to report this to, but when vim-test uses `neoterm` to run tests, neoterm does not close after tests succeed even if the following options are set:
```
let g:neoterm_run…