设为首页 - 加入收藏 ASP站长网(Aspzz.Cn)- 科技、建站、经验、云计算、5G、大数据,站长网!
热搜: 数据 手机 公司
当前位置: 首页 > 服务器 > 搭建环境 > Windows > 正文

增强Vim编辑器,提高编辑效率(3)

发布时间:2018-09-26 17:35 所属栏目:117 来源:佚名
导读:要在不更改选项当前值的情况下查看其当前设置,可以在 Vim 的命令行上使用在末尾加上 ? 的命令: set autoindent? 在大多数选项前加上 no 前缀可以取消或关闭选项: set noautoindent 可以为单独的文件配置选项,而

要在不更改选项当前值的情况下查看其当前设置,可以在 Vim 的命令行上使用在末尾加上 ? 的命令:

  1. set autoindent?

在大多数选项前加上 no 前缀可以取消或关闭选项:

  1. set noautoindent

可以为单独的文件配置选项,而不必修改全局配置文件。需要的话,请打开文件并输入 :,然后键入 set命令。这样的话,配置仅对当前的文件编辑会话有效。

增强Vim编辑器,提高编辑效率

使用命令行获取帮助:

  1. :help autoindent

增强Vim编辑器,提高编辑效率

注意:此处列出的命令仅对 Linux 上的 Vim 7.4 版本和 Windows 上的 Vim 8.0 版本进行了测试。

这些有用的命令肯定会增强您的 Vim 使用体验。你会推荐哪些其他有用的命令?

选项列表

复制该选项列表粘贴到 .vimrc 文件中:

  1. " Indentation & Tabs
  2. set autoindent
  3. set smartindent
  4. set tabstop=4
  5. set shiftwidth=4
  6. set expandtab
  7. set smarttab
  8. " Display & format
  9. set number
  10. set textwidth=80
  11. set wrapmargin=2
  12. set showmatch
  13. " Search
  14. set hlsearch
  15. set incsearch
  16. set ignorecase
  17. set smartcase
  18. " Browse & Scroll
  19. set scrolloff=5
  20. set laststatus=2
  21. " Spell
  22. set spell spelllang=en_us
  23. " Miscellaneous
  24. set nobackup
  25. set noswapfile
  26. set autochdir
  27. set undofile
  28. set visualbell
  29. set errorbells

【编辑推荐】

  1. 【必看】10个用了就会后悔的Linux命令
  2. Linux的10个最危险的命令
  3. Linux中find命令用法全汇总,看完就没有不会用的!
  4. 8个用于有效地管理进程的Linux命令
  5. 15个可以节省你时间的命令别名
【责任编辑:庞桂玉 TEL:(010)68476606】
点赞 0

(编辑:ASP站长网)

网友评论
推荐文章
    热点阅读