Bottom Model
:! 【not save the content】
:w 【save the content to file】
:wq 【save the content to file and exit the vim】
:! ifconfig 【execute shell command in vim 】
:s/x/X 【replace x to X in the focus line】
:%s/x/X 【replace x to X in the file】
:%s/x/X/g 【replace x to X in the globle files】
:3,5 s/x/X 【replace x to X between 3 and 5 lines】
:set nonum 【hidden the vim line number】
:set nu 【show vim line number】
Visual Model
v character 【visual model】
shift + v 【line visual model】
control + v 【block visual model】