Skip to content

Instantly share code, notes, and snippets.

View suica's full-sized avatar
🎯
Focusing

Sg suica

🎯
Focusing
  • NetEase Hangzhou Institute
  • China
  • 15:29 (UTC +08:00)
View GitHub Profile
@suica
suica / keybindings.json
Created July 30, 2023 08:26 — forked from bitterteasweetorange/keybindings.json
setup vscode like neovim
[
{
"command": "projectManager.listGitProjects#sideBarGit",
"key": "cmd+o"
},
{
"command": "expand_region",
"key": "ctrl+=",
"when": "editorTextFocus"
},
@suica
suica / vim-surround使用指南.MD
Created January 17, 2023 09:55 — forked from wilon/vim-surround使用指南.MD
vim-surround使用指南,vim-surround如何使用

普通模式

命令 说明 + 示例
ds 删除括号
ds " "Hello world!" =>
Hello world!
cs 替换括号
cs "( "Hello world!" =>
(Hello world!)
cS 替换括号,括号内文本做新一行
cS "{ "Hello world!" => {     Hello world! }