Closed hiecaq closed 7 years ago
For example,
usr/bin/vim -c "SuperMan 3 printf" will open printf(3) perfectly,
usr/bin/vim -c "SuperMan 3 printf"
printf(3)
but nvim -c "SuperMan 3 printf" will open printf(1).
nvim -c "SuperMan 3 printf"
printf(1)
However in nvim, :SuperMan 3 printf also works correctly.
:SuperMan 3 printf
I guess It's a problem caused by neovim itself since nvim -c "Man 3 printf" also get into printf(1).
nvim -c "Man 3 printf"
Looks like this has been fixed upstream in Neovim as of neovim/neovim#5656
For example,
usr/bin/vim -c "SuperMan 3 printf"
will openprintf(3)
perfectly,but
nvim -c "SuperMan 3 printf"
will openprintf(1)
.However in nvim,
:SuperMan 3 printf
also works correctly.