- Browser Refresh ってパッケージをぶっこむ。
- そしてkeybindをいじる。
- やりかたの参考はこちら -> Sublime Text 2で素早くブラウザプレビューする方法
// Browser Refresh
{ "keys": ["super+s"], "command": "browser_refresh",
"args": {
"auto_save": true,
"delay": 0.0,
"activate_browser": false,
"browser_name" : "Google Chrome"
},
"context": [
{
"key": "selector",
"operator": "equal",
"operand": "text.htm,text.html,source.php,source.scss,source.css"
},
{ "key": "selector", "operator": "not_equal", "operand": "text.html.markdown" }
]
},
以上おしまい。追記) markdownの保存時にもブラウザが更新されてウザイので、上記コードを一部変更しました。
No comments:
Post a Comment