tldr/pages.zh/common/vim.md

38 lines
737 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# vim
> Vi IMproved一个程序员的文本编辑器提供为不同类型的文档修改设计的多种模式。
> 按 `i` 进入插入模式。`<Esc>` 返回正常模式,正常模式允许使用 Vim 命令。
> 更多信息:<https://www.vim.org>.
- 打开文档:
`vim {{文件}}`
- 打开文件的指定行数:
`vim +{{行数}} {{文件}}`
- 查看 Vim 的使用说明:
`:help<Enter>`
- 保存并退出:
`:wq<Enter>`
- 撤销上一个操作:
`u`
- 用特征pattern在文件中搜寻按下 `n`/`N` 切换至上 / 下一个结果:
`/{{特征}}<Enter>`
- 对整个文件使用正则表达式进行替换:
`:%s/{{正则表达式}}/{{替换字}}/g<Enter>`
- 显示行号:
`:set nu<Enter>`