swapping repl/vim window
Closed this issue · 1 comments
sk0427 commented
Thank you for your effort in developing this.
I really appreciate your dedication!
Describe the bug
Current neoterm with g:neoterm_default_mod='vertical'
separates window vertically, but repl starts in the left side. How can I change it to start in right as previously?
To Reproduce
Just start vim/nvim
This is my
.vimrc
set timeoutlen=1000
set ttimeoutlen=0
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
set rtp+=~/.vim/bundle/neoterm
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'file:///home/sk47/.vim/bundle/YouCompleteMe'
Plugin 'file:///home/sk47/.vim/bundle/neoterm'
call vundle#end()
filetype plugin indent on
tnoremap <silent> <ESC> <C-\><C-n><C-w>
nnoremap <silent> <C-E> V:TREPLSendLine<cr>
vnoremap <silent> <C-R> V:TREPLSendSelection<cr>'>l$
let g:neoterm_default_mod='vertical'
let g:neoterm_autoscroll=1
let g:neoterm_direct_open_repl=1
Versions (please complete the following information):
- OS: Ubuntu 18.04
- neoterm commit f6c22fd
- Vim or Neovim
vim 8.0.1453
neovim v0.3.8
kassio commented
You can use let g:neoterm_default_mod = 'botright vertical'
. For more information check :help mod
.