作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以问题是在不覆盖任何其他功能的情况下将其分配给 Escape。我尝试了以下方法,但它不起作用。
{
"keys": ["escape"],
"command": "exec",
"args": {"hide_phantoms_only" : true },
"context": [ { "key": "phantom_visible", "operator": "equal", "operand": true }],
},
phantom_visible
只是一个猜测。
最佳答案
不幸的是,目前 Sublime Text(在撰写本文时,构建 3126)没有可以在键绑定(bind)中使用的上下文来判断何时显示内联构建错误幻象。这是简短的discussed in the ST forums因此, future 的构建可能会包含此功能。
同时,受 this post 的启发,我们可能会尝试创建一个不会与默认 Esc 行为冲突的键绑定(bind)。但值得记住的是,默认键绑定(bind)可能会更改,因此我们在更新 ST 时需要注意它,以查看这是否仍然相关/正确涵盖所有场景:
{ "keys": ["escape"], "command": "exec", "args": { "hide_phantoms_only": true },
"context":
[
// inverse of all the "escape" key contexts found in the Default keybindings
{ "key": "num_selections", "operator": "equal", "operand": 1 },
{ "key": "has_next_field", "operator": "equal", "operand": false },
{ "key": "has_prev_field", "operator": "equal", "operand": false },
{ "key": "panel_visible", "operator": "equal", "operand": false },
{ "key": "overlay_visible", "operator": "equal", "operand": false },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }
]
}
关于sublimetext3 - 如何使用 Escape 隐藏 Sublime 内联错误(幻象),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41910121/
我之前遇到的所有其他 BAD_ACCESS 通常都是一个快速的拼写错误修复,但这一个非常令人困惑 此代码应该下载 .ics 谷歌日历文件,然后将其传递给解析器函数,该函数将返回 Event 对象数组(
我正在使用 nib 文件加载 View : NSArray *nibViews = [[NSBundle mainBundle] loadNibNamed:@"AnalysisView" owner:
所以问题是在不覆盖任何其他功能的情况下将其分配给 Escape。我尝试了以下方法,但它不起作用。 { "keys": ["escape"], "command": "exec", "arg
我是一名优秀的程序员,十分优秀!