DQ常用快捷键及其他

1、vi term

ctrl+a 跳转到行首
ctrl+e 跳转到行尾

设置背景透明:
cmd+, profiles ( window , Transparency )

2、phpstorm

JS \ JSON 格式化: option + cmd + L

3、sublime text
JS \ JSON \ CSS 格式化(Alignment): shift + cmd + H

其他常用设置

1\配置chrome-实现跨域

open -a "Google Chrome" --args --disable-web-security  --user-data-dir
设置成功提示(最好先把浏览器关了)

遇到 Https 证书 没有授权的问题。这些问题在goolge 的 chrome 浏览器下都可以解决的, 方法是:
用命令行打开 Google Chrome 就好了
Mac os 下面用

   /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --disable-web-security

或者

  open -a "Google Chrome" --args --disable-web-security  

Ubuntu?Linux:

chromium-browser --disable-web-security  

**windows **

  chrome.exe --disable-web-security  

safari
用命令行打开 Apple Safafi 方法是:
Mac OS 下:

open -a '/Applications/Safari.app' --args --disable-web-security  

你可能感兴趣的:(DQ常用快捷键及其他)