Vim help

作者: 珍惜注意力 | 来源:发表于2022-01-17 15:09 被阅读0次

Usage

vim [argments] [file ..]                 edit specified file(s)
vim [argments] -                         read text from stdin
vim [argments] -t tag                    edit file where tag is defined
vim [argments] -q [errorfile]            edit file with first error

Argments

   --                   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")
   -d                   Diff mode (like "vimdiff")
   -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
   -l                   Lisp mode
   -C                   Compatible with Vi: 'compatible'
   -N                   Not fully Vi compatible: 'nocompatible'
   -V[N][fname]         Be verbose [level N] [log messages to fname]
   -D                   Debugging mode
   -n                   No swap file, use memory only
   -r                   List swap files and exit
   -r (with file name)  Recover crashed session
   -L                   Same as -r
   -A                   Start in Arabic mode
   -H                   Start in Hebrew mode
   -T <terminal>        Set terminal type to <terminal>
   --not-a-term         Skip warning for input/output not being a terminal
   --ttyfail            Exit if input or output is not 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>
   -x                   Edit encrypted files
   --startuptime <file> Write startup timing messages to <file>
   -i <viminfo>         Use <viminfo> instead of .viminfo
   --clean              'nocompatible', Vim defaults, no plugins, no viminfo
   -h  or  --help       Print Help (this message) and exit
   --version            Print version information and exit

相关文章

  • Vim help

    Usage Argments

  • 爬虫之python scrapy副本篇

    1. 环境配置 [安利] vim 为什么要用vim呢?因为打开vim你会看到 Help poor children...

  • vim 学会使用 help

    vim 学会使用 help Vim的帮助文档对使用者非常的有帮助,但是需要在使用前花点时间了解使用方法。 help...

  • Vim常用技巧

    使用vim教程 它会复制一份教程文件,你可以放心练习,不用担心破坏原来的内容. 求助 :help:help + 相...

  • 让VIM变得更好用

    VIM配置文件vimrc简介 具体的文档可参考官方文档或者在vim中使用:help vimrc命令。 简而言之,和...

  • 如何使用 Vim 的 help

    实际上,无论是 Vim 的基础知识还是进阶知识,大都可以从 help 中找到指引。但是我想很多人并没有意识到这一点...

  • 如何高效的使用vim的帮助,以前我都错了

    在使用vim的过程中,一定会用help,而vim完善的帮助文档也让人惊叹,到目前为止我还没没有见过那个项目能把文档...

  • Vim和乌干达的儿童

    在命令行界面输入vim会出现一堆文件,但是一直有这么一句话 Help poor children in Ugand...

  • $ bitcoind --help -help-debug

    $ bitcoind --help -help-debug $ bitcoind --help -help-deb...

  • Mongo 索引和搜索

    help > helpMongoDB help > db.help() >db.mycoll.help() 指定的...

网友评论

      本文标题:Vim help

      本文链接:https://www.haomeiwen.com/subject/pypchrtx.html