add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

33
pages.zh/common/ex.md Normal file
View File

@@ -0,0 +1,33 @@
# ex
> 命令行文本编辑器。
> 另见:`vim`。
> 更多信息:<https://www.vim.org>。
- 打开文件:
`ex {{path/to/file}}`
- 保存并退出:
`wq<Enter>`
- 撤销最后一个操作:
`undo<Enter>`
- 在文件中搜索模式:
`/{{search_pattern}}<Enter>`
- 在整个文件中进行正则表达式替换:
`%s/{{regular_expression}}/{{replacement}}/g<Enter>`
- 插入文本:
`i<Enter>{{text}}<C-c>`
- 切换到 Vim
`visual<Enter>`