本人最喜歡並強烈推薦的主題 Flatland Themephp
安裝方法:html
1.經過 package control 安裝 soad theme,Flatland 依賴該主題jquery
2.經過 package control 安裝 Flatland Themechrome
3.激活主題瀏覽器
修改 Preferences 文件,經過 Sublime Text 2 的菜單 「Preferences > Settings - User」 可打開用戶配置文件,在其中添加(或修改原來的設置):app
{ "theme": "Flatland Dark.sublime-theme", "color_scheme": "Packages/Theme - Flatland/Flatland Dark.tmTheme" }
若是喜歡其餘主題,能夠參看這篇帖子:http://www.xiumu.org/other/the-subline-text-23-theme.shtmlide
1 // chrome 2 { "keys": ["f2"], "command": "side_bar_files_open_with", 3 "args": { 4 "paths": [], 5 "application": "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe", 6 "extensions":".*" 7 } 8 }, 9 10 // firefox 11 { "keys": ["f3"], "command": "side_bar_files_open_with", 12 "args": { 13 "paths": [], 14 "application": "C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe", 15 "extensions":".*" 16 } 17 }, 18 19 // ie 20 { "keys": ["f1"], "command": "side_bar_files_open_with", 21 "args": { 22 "paths": [], 23 "application": "C:/Program Files/Internet Explorer/iexplore.exe", 24 "extensions":".*" 25 } 26 }
"hot_exit":false,
"remember_open_files" : false,函數
Ctrl+D 選詞 (反覆按快捷鍵,便可繼續向下同時選中下一個相同的文本進行同時編輯)
Ctrl+J 合併行(已選擇須要合併的多行時)
Ctrl+L 選擇整行(按住-繼續選擇下行)
Ctrl+M 光標移動至括號內開始或結束的位置
Ctrl+P 查找當前項目中的文件和快速搜索;輸入 @ 查找文件主標題/函數;或者輸入 : 跳轉到文件某行;
Ctrl+R 快速列出/跳轉到某個函數
Ctrl+KK 從光標處刪除至行尾
Ctrl+K+U 改成大寫
Ctrl+K+L 改成小寫
Ctrl+Enter 插入行後(快速換行)
Ctrl+x 刪除行ui
Ctrl+Shift+A 選擇光標位置父標籤對兒
Ctrl+Shift+D 複製光標所在整行,插入在該行以前
Ctrl+Shift+L 鼠標選中多行(按下快捷鍵),便可同時編輯這些行
Ctrl+Shift+P 打開命令面板
Ctrl+Shift+/ 註釋已選擇內容
Ctrl+Shift+↑能夠移動此行代碼,與上行互換
Ctrl+Shift+↓能夠移動此行代碼,與下行互換
Ctrl+Shift+[ 摺疊代碼
Ctrl+Shift+] 展開代碼url