We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$ nvim -u test_vimrc main.go
(main.go is some working go program) in vim I did go-run (by pressing \gr) then pressed j
go-run
\gr
j
Either the terminal window should be active after \gr or file buffer should remain active and j press should act as normal motion key
The file buffer remained active but after pressing j, insert mode was started.
The problematic setting is set splitright
set splitright
vimrc
$ cat test_vimrc call plug#begin('~/.local/share/nvim/plugged') Plug 'fatih/vim-go' call plug#end() nmap <leader>gr <Plug>(go-run) au WinEnter term://* startinsert set splitright
go env
The text was updated successfully, but these errors were encountered:
I think this is the same as #1412?
Sorry, something went wrong.
Yes, looks the same.
No branches or pull requests
What did you do?
(main.go is some working go program)
in vim I did
go-run
(by pressing\gr
) then pressedj
What did you expect to happen?
Either the terminal window should be active after
\gr
or file buffer should remain active and
j
press should act as normal motion keyWhat happened instead?
The file buffer remained active but after pressing
j
, insert mode was started.Configuration
The problematic setting is
set splitright
vimrc
you used to reproduce:go env
):$ go env
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/home/doubleloop/.gvm/pkgsets/go1.9/global"
GORACE=""
GOROOT="/home/doubleloop/.gvm/gos/go1.9"
GOTOOLDIR="/home/doubleloop/.gvm/gos/go1.9/pkg/tool/linux_amd64"
GCCGO="gccgo"
CC="gcc"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build292584452=/tmp/go-build -gno-record-gcc-switches"
CXX="g++"
CGO_ENABLED="1"
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
The text was updated successfully, but these errors were encountered: