当前位置:  开发笔记 > 编程语言 > 正文

删除到vim中当前括号内的结尾

如何解决《删除到vim中当前括号内的结尾》经验,为你挑选了1个好方法。

说我正在编辑这个json

{
  "a": {"language": "python"},
  "b": {},
  "c": {"language": "java"},
  "d": {"encoding": "utf-16"}
}

我的光标在b"b": {}.我想删除直到当前{}块结束 .所以它看起来像,

{
  "a": {"language": "python"},
  "
}

看起来很奇怪.但解释我想要什么.

我怎么能在Vim中做到这一点?



1> Marth..:

你可以用d]}.
来自:help ]}:

                                    *]}*
]}          go to [count] next unmatched '}'.
            |exclusive| motion.

该帮助还说这是该动作的用例之一:

The above four commands can be used to go to the start or end of the current
code block.  It is like doing "%" on the '(', ')', '{' or '}' at the other
end of the code block, but you can do this from anywhere in the code block.

推荐阅读
sx-March23
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有