gpt4 book ai didi

sublimetext3 - 如何使用 Escape 隐藏 Sublime 内联错误(幻象)

转载 作者:行者123 更新时间:2023-12-04 04:49:38 25 4
gpt4 key购买 nike

所以问题是在不覆盖任何其他功能的情况下将其分配给 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com