shell进入vi模式

在command line中我们也可以像vim操作一样,

我们只需要一下即可,这样对于熟悉vim的朋友非常方便

>set -o vi

即可像在vim中一样方便快捷的移动及各种文本操作

我们可以通过

>set -o

查看

>root@MacBook-Air:/Users/test# set -o |grep -E 'vi|emacs'
emacs off
privileged off
vi on

如何取消

>root@MacBook-Air:/Users/test# set -o emacs
root@MacBook-Air:/Users/test# set -o |grep -E 'vi|emacs'
emacs on
privileged off
vi off

    A+
发布日期:2021年03月05日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: