博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Custom & Eclipse shortcuts key bindings for Sublime Text 2
阅读量:6922 次
发布时间:2019-06-27

本文共 1715 字,大约阅读时间需要 5 分钟。

[
{ "keys": ["f12"], "command": "htmlprettify"},
{ "keys": ["f1"], "command": "fold" },
{ "keys": ["f2"], "command": "unfold" },
{ "keys": ["ctrl+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": "@"} },
 
{ "keys": ["ctrl+space"], "command": "auto_complete" },
{ "keys": ["ctrl+space"], "command": "replace_completion_with_auto_complete", "context":
[
{ "key": "last_command", "operator": "equal", "operand": "insert_best_completion" },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false },
{ "key": "setting.tab_completion", "operator": "equal", "operand": true }
]
},
{ "keys": ["ctrl+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["ctrl+shift+c"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+shift+c"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["ctrl+shift+f"], "command": "reindent" , "args": {"single_line": false}},
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
{ "keys": ["ctrl+alt+j"], "command": "join_lines" },
{ "keys": ["ctrl+alt+down"], "command": "duplicate_line" },
{ "keys": ["shift+ctrl+r"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
{ "keys": ["ctrl+shift+s"], "command": "save_all" },
{ "keys": ["ctrl+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
{ "keys": ["shift+ctrl+f4"], "command": "close_all" },
{ "keys": ["shift+ctrl+y"], "command": "lower_case" },
{ "keys": ["shift+ctrl+x"], "command": "upper_case" }
]
(from https://gist.github.com/thbkrkr/3194275)

转载于:https://www.cnblogs.com/ikaka/p/3859975.html

你可能感兴趣的文章
SSH打通密钥后仍需要密码
查看>>
GZIP(1)
查看>>
在线压缩解压缩PHP代码
查看>>
使用vmware vdp备份2008虚机时,如果出错可以参考这篇文章。
查看>>
新网互联域名注册量动态:6月下旬净增3341个
查看>>
一台服务器的黑道生涯之六 保安来了
查看>>
LINUX的交换分区或交换文件SWAP的查看与维护
查看>>
Nacos 发布0.3.0版本,迄今为止最好看的版本
查看>>
使用NAS动态存储卷创建有状态应用
查看>>
细说select、poll和epoll之间的区别与优缺点
查看>>
TypeScript + Vue 传统多页面开发模式配置方案
查看>>
About Me
查看>>
Android Studio 错误 Duplicate files copied in APK META-INF/xxxx
查看>>
PHP验证码
查看>>
如何应对系统蓝屏
查看>>
好程序员分享如何看待CSS中BEM的命名方式?
查看>>
Linux 使用xl2tpd搭建l2tp ***服务
查看>>
基础知识
查看>>
案例1:case when 案例分析
查看>>
学习笔记-小甲鱼Python3学习第十六讲:序列
查看>>