在 Sublime 中浏览没有箭头的自动完成结果 [英] Browse autocomplete results without arrows in Sublime

查看:43
本文介绍了在 Sublime 中浏览没有箭头的自动完成结果的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 Sublime Text 3,并且我试图不使用任何箭头.但是,如果没有箭头,我似乎无法滚动浏览自动完成或 Ctrl+P 的不同结果.

I'm using Sublime Text 3, and I am trying to not use arrows for anything. However I can't seem to scroll through different results of autocomplete or Ctrl+P without the arrows.

有什么建议吗?谢谢!

推荐答案

您可能希望在您的键盘映射文件中包含以下内容:

You probably want something like this in your keymaps file:

// navigation with tab in autocomplete popup
{ "keys": ["tab"], "command": "move", "args": {"by": "lines", "forward": true}, "context": [{ "key": "auto_complete_visible" }] },
{ "keys": ["shift+tab"], "command": "move", "args": {"by": "lines", "forward": false}, "context": [{ "key": "auto_complete_visible" }] },

// navigation with tab in overlay
{ "keys": ["tab"], "command": "move", "args": {"by": "lines", "forward": true}, "context": [{ "key": "overlay_visible", "operator": "equal", "operand": true } ] },
{ "keys": ["shift+tab"], "command": "move", "args": {"by": "lines", "forward": false}, "context": [{ "key": "overlay_visible", "operator": "equal", "operand": true } ] },

这篇关于在 Sublime 中浏览没有箭头的自动完成结果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆