Vim(vi)编辑器使用指南

2019-11-28  本文已影响0人  nzdxwl

编辑(按以下键会进入编辑状态):

删除(非编辑状态)

复制和黏贴(非编辑状态)

跳转(非编辑状态):

其他

VIM使用语法

VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Jun 07 2019 15:35:43)

usage: vim [arguments] [file ..]       edit specified file(s)
   or: vim [arguments] -               read text from stdin
   or: vim [arguments] -t tag          edit file where tag is defined

Arguments:
   --           Only file names after this
   -v           Vi mode (like "vi")
   -e           Ex mode (like "ex")
   -E           Improved Ex mode
   -s           Silent (batch) mode (only for "ex")
   -y           Easy mode (like "evim", modeless)
   -R           Readonly mode (like "view")
   -Z           Restricted mode (like "rvim")
   -m           Modifications (writing files) not allowed
   -M           Modifications in text not allowed
   -b           Binary mode
   -C           Compatible with Vi: 'compatible'
   -N           Not fully Vi compatible: 'nocompatible'
   -V[N][fname]     Be verbose [level N] [log messages to fname]
   -n           No swap file, use memory only
   -r           List swap files and exit
   -r (with file name)  Recover crashed session
   -L           Same as -r
   -T <terminal>    Set terminal type to <terminal>
   --not-a-term     Skip warning for input/output not being a terminal
   -u <vimrc>       Use <vimrc> instead of any .vimrc
   --noplugin       Don't load plugin scripts
   -p[N]        Open N tab pages (default: one for each file)
   -o[N]        Open N windows (default: one for each file)
   -O[N]        Like -o but split vertically
   +            Start at end of file
   +<lnum>      Start at line <lnum>
   --cmd <command>  Execute <command> before loading any vimrc file
   -c <command>     Execute <command> after loading the first file
   -S <session>     Source file <session> after loading the first file
   -s <scriptin>    Read Normal mode commands from file <scriptin>
   -w <scriptout>   Append all typed commands to file <scriptout>
   -W <scriptout>   Write all typed commands to file <scriptout>
   -h  or  --help   Print Help (this message) and exit
   --version        Print version information and exit
上一篇下一篇

猜你喜欢

热点阅读