1. 程式人生 > >sublime text3 的初次嘗試

sublime text3 的初次嘗試

1.大三了才初學前端,所以直接看的慕課教程學習使用sublime外掛的方法,連結如下http://www.imooc.com/learn/40(“sublime進級”有選擇地看)
2.下了外掛:Package Control、Emmet、DocBlockr、JavaScript&NodeJS Snippets、SideBarEnhancements、Theme - Spacegray
3、使用subime時有些快捷鍵記不住,直接看慕課下的學員課堂總結
4、上述外掛的注意事項:

  • 使用Theme時,給setting-user做相應設定
  • 即使下完SideBarEnhancements,還需要在側邊欄的檔案上右鍵才能用瀏覽器開啟網頁,於是尋找方法用快捷鍵開啟瀏覽器,方法如下:給Preferences-Key Bingings中新增以下內容:“`{“keys”:[“ctrl+t”],”command”:”side_bar_files_open_with”,”args”:{“paths”:[],”application”:”C:\Program Files (x86)\Google\Chrome\Application\chrome.exe”,”extensions”:”.*”}}
    ]

“`

  • 敲程式碼有時不能一鍵跳出 },於是設定了左移右移一個字元或單詞
    { "keys": ["alt+space"], "command": "move", "args": {"by": "word_ends", "forward": true} },
    { "keys": ["shift+alt+space"], "command": "move", "args": {"by": "characters", "forward": true} },
    { "keys": ["shift+space"], "command": "move", "args": {"by": "word_ends", "forward": false} },
    { "keys": ["ctrl+alt+space"], "command": "move", "args": {"by": "characters", "forward": false} },
    { "keys": ["alt+enter"], "command": "move", "args": {"by": "lines", "forward": true} },
    { "keys": ["shift+alt+enter"], "command": "move", "args": {"by": "lines", "forward": false} },

5.安裝jQuery外掛,以為可以直接使用jQuery程式碼對html文件進行操作,實際上此外掛只是對jQuery程式碼進行高亮操作
6.Roaming下存了軟體的資料和配置,刪除sublime時系統不會自動刪除此檔案,所以重新下載sublime,其配置並不會發生改變。