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

37
pages.zh/common/kak.md Normal file
View File

@@ -0,0 +1,37 @@
# kak
> Kakoune 是一个基于模式的代码编辑器,实施“多重选择”范式。
> 数据可以在不同位置同时被选择和编辑,使用多重选择;用户也可以连接到同一会话进行协作编辑。
> 更多信息:<https://kakoune.org>。
- 打开一个文件并进入普通模式,以执行命令:
`kak {{path/to/file}}`
- 从普通模式进入插入模式,以在文件中写入文本:
`i`
- 退出插入模式,返回普通模式:
`<Esc>`
- 将当前文件中所有“foo”的实例替换为“bar”
`%s{{foo}}<Enter>c{{bar}}<Esc>`
- 取消选择所有次要选择,仅保留主要选择:
`<Space>`
- 搜索数字并选择前两个:
`/\d+<Enter>N`
- 插入文件的内容:
`!cat {{path/to/file}}<Enter>`
- 保存当前文件:
`:w<Enter>`