我正在使用linux [FEDORA 20].我想覆盖多个游标的快捷键,
ctrl+alt+up/down
因为它用于在fedora中切换工作区.我厌倦了搜索捷径Preferences>key binding - default
.
但是找不到它.那我该如何覆盖呢?
Mat*_*DMo 12
CtrlAlt↑/ ↓是Windows中多个选择的键盘快捷键,而不是Linux.以下内容来自Linux keymap文件:
{ "keys": ["alt+shift+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["alt+shift+down"], "command": "select_lines", "args": {"forward": true} },
Run Code Online (Sandbox Code Playgroud)
转到
Preferences > Key Binding - User
并添加以下行以覆盖默认键绑定.
{ "keys": ["ctrl+space+down"], "command": "select_lines", "args": {"forward": true} },
{ "keys": ["ctrl+space+up"], "command": "select_lines", "args": {"forward": false} }
Run Code Online (Sandbox Code Playgroud)
哪里
ctrl+space+up/down
Run Code Online (Sandbox Code Playgroud)
是你的关键绑定.
归档时间: |
|
查看次数: |
2929 次 |
最近记录: |