使用Ctrl+R反向查找,我找到了一个需要的长命令:
scp .oh-my-zsh/custom/themes/robbyrussell_modifiedprompt.zsh-theme pi@192.168.43.220:.oh-my-zsh/custom/themes/robbyrussell_modifiedprompt.zsh-theme
但是我需要更改中间的ip地址。有没有办法将光标移动到ip地址的开头?
通过在文件末尾添加来更改.zshrc
autoload -U edit-command-line
zle -N edit-command-line
bindkey '^E^E' edit-command-line # Opens Vim to edit current command line
现在,按下CTRL+E,E打开我的vim编辑器,在那里我可以用"/"键使用模式搜索,更改ip并返回命令行:qw。