weekly_20190128_20190203
时间: 20190128 ~ 20190203
新闻
资源推荐
-
参考: http://www.ruanyifeng.com/blog/2019/02/weekly-issue-42.html
A note-taking app based on Markdown syntax.
-
How to revert a commit already pushed to a remote repository
git push origin +HEAD^:master
其他
-
Sublime Text, Record Macro 录制宏, Key Bindings - User 自定义快捷键
目标:
- 新建快捷键, 使得按下
alt + .
后, 可以自动完成Convert Indentation to Tabs
的功能
步骤:
-
点击 Tools — Record Macro
-
点击 View — Indentation — Convert Indentation to Tabs
-
点击 Tools — Stop Recording Macro, 然后 Save Macro
-
打开刚才保存的文件, 可以得到如下内容
[ { "args": { "set_translate_tabs": true }, "command": "unexpand_tabs" } ]
复制以上内容
-
点击 Preferences — Key Bindings - User, 参考 Key Bindings - Default, 我们可以写出如下配置文件
[ { "keys": ["alt+."], "args": { "set_translate_tabs": true }, "command": "unexpand_tabs" } ]
保存后即可生效
参考资料:
-
https://blog.csdn.net/ROCKMOSTER/article/details/52155613
-
https://blog.csdn.net/zhezhebie/article/details/71636983
- 新建快捷键, 使得按下
本文地址:https://jjayyyyyyy.github.io/2019/02/03/weekly_20190128_20190203.html
(END)