假设我想在vim中访问此远程文件
ftp://amr@steamboy//home/amr/bin/dr_snapshot.py
并在出现提示时,我不小心输入了错误的密码。
如何重置密码?现在我必须退出并重新启动vim。
客户端和服务器都在Linux上。
感谢。
答案 0 :(得分:5)
:help netrw-userpass
Attempts to use ftp will prompt you for a user-id and a password. These will be saved in global variables |g:netrw_uid| and |s:netrw_passwd|; subsequent use of ftp will re-use those two strings, thereby simplifying use of ftp. However, if you need to use a different user id and/or password, you'll want to call |NetUserPass()| first.
即。使用方法:
:call NetUserPass() -- prompts for uid and password
PS。
vim带有一个惊人的帮助系统。在这种情况下,我做到了:h ftp
,搜索了password
,首先点击的是此部分:
脚本尝试使用| inputsecret()|来无形地获取ftp的密码, 内置的Vim功能。见| netrw-userpass |如何更改密码 一个人设定之后。
给出了 netrw-userpass
的条目 BTW如果您迷路了,请执行:h <SOME_STRING>
并按CTRL-d并显示包含该字符串的所有部分的列表...