我的缓冲区中有一些文本
[{(lorem) ipsum <cursor here>
如何插入右大括号}
,然后键入内容,然后插入]
与左大括号匹配的内容{
和[
让我解释一下为什么我需要这个。
例如我必须输入一些纯javascript
代码(因为coffee
机器现在出故障了)
$(document).ready(function(){
var classA = (function(){
function classA(){}
<100 lines of code here>
return classA;
-->oh, which closing brace should I insert here....!
另一个案例
[theWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/%@", HostName, @"some/path/here"]] -> huh, what next? How many closing braces am I missing?
以及为什么我在问题标题中手动澄清。因为 有 一些 键绑定可以插入右 大括号。例如. 但是,我只想在需要时插入右括号。 automatically
in ( ()<Left>
我知道i_<C-x>_<C-o>
要插入结束xml
标签。但我不知道如何处理这些问题。
先感谢您。