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 --version
vim -u DEFAULTS
$TERM
nvim -u NORC
init.vim
let g:netrw_cygwin= 0 let g:netrw_scp_cmd="\"D:\\PuTTY\\PSCP.EXE\" -l username -i C:\\id_rsa.ppk " let g:netrw_sftp_cmd="\"D:\\PuTTY\\PSFTP.EXE\" -l username -i C:\\id_rsa.ppk "
nvim -u NORC :e scp://username@ip//directory/
This is a vim failure to use putty to read directores, either using plink or pscp.
plink needs remote addr before ls command, and pscp -ls generates a detailed list that vim does not recognize.
As I posted as below, I can make it work. But it is not an ideal solution, since it does not cover situations for all usages. So maybe someone can make it better. https://stackoverflow.com/questions/64747380/how-to-let-putty-read-directories-in-vim/64747381#64747381
Neovim\share\nvim\runtime\autoload\netrw.vim,
elseif exists("g:netrw_ssh_cmd") "elseif executable(g:netrw_ssh_cmd)
let g:netrw_ssh_cmd="\"D:\\PuTTY\\PLINK.EXE\" -l username -i C:\\id_rsa.ppk "
original issue: neovim/neovim#13256
The text was updated successfully, but these errors were encountered:
No branches or pull requests
nvim --version
:0.5.0-746vim -u DEFAULTS
(version: ) behaves differently? no$TERM
: N/ASteps to reproduce using
nvim -u NORC
init.vim
Actual behaviour
This is a vim failure to use putty to read directores, either using plink or pscp.
plink needs remote addr before ls command, and pscp -ls generates a detailed list that vim does not recognize.
Expected behaviour
As I posted as below, I can make it work. But it is not an ideal solution, since it does not cover situations for all usages. So maybe someone can make it better.
https://stackoverflow.com/questions/64747380/how-to-let-putty-read-directories-in-vim/64747381#64747381
Neovim\share\nvim\runtime\autoload\netrw.vim,
init.vim
original issue: neovim/neovim#13256
The text was updated successfully, but these errors were encountered: