Atom 配置

1. atom 修改快捷鍵 ( 在 setting > keybindings > your keymap file 中

#  cmd 對應 win 鍵
'atom-text-editor':
    # 新建行
    'shift-enter': 'editor:newline-below'

    # 上 下 左 右
    'ctrl-n':'core:move-down'
    'ctrl-p':'core:move-up'
    'ctrl-f':'core:move-right'
    'ctrl-b':'core:move-left'
    'ctrl-cmd-b': 'editor:move-to-beginning-of-word'
    'ctrl-cmd-f': 'editor:move-to-end-of-word'

    # 跳到行頭&尾
    'ctrl-e': 'editor:move-to-end-of-screen-line'
    'ctrl-a': 'editor:move-to-first-character-of-line'

    # 刪除單詞
    'ctrl-cmd-h': 'editor:delete-to-beginning-of-word'
    'ctrl-cmd-d': 'editor:delete-to-end-of-word'
    'ctrl-h':'core:backspace'
    'ctrl-d':'core:delete'

    # 選中
    'ctrl-shift-b': 'editor:select-to-beginning-of-word'
    'ctrl-shift-f': 'editor:select-to-end-of-word'
 

'.platform-win32 atom-text-editor, .platform-linux atom-text-editor':
    # 查找
    'cmd-f': 'find-and-replace:show'

'atom-workspace atom-text-editor':
    # 全選
    'cmd-a':'core:select-all'

'body':
    # 新建文件
    'cmd-n':'application:new-file'

2. 實用插件

  1. advanced-open-file
  2. hyperclick
  3. atom-beautify
  4. js-hyperclick
  5. atom-javascript-snippets
  6. minimap
  7. remote-ftp
  8. autoclose-html
  9. minimap-bookmarks
  10. docblockr
  11. minimap-highlight-selected
  12. git-plus
  13. pigments
  14. highlight-selected
  15. platformio-atom-ide-terminal

3. 主題

  1. seti-ui
  2. seti-syntax
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。

推薦閱讀更多精彩內容

  • 大家好,我是K.J.!無意中通過搜索引擎來到了簡書,看到了很多大大們的精彩分享,因此受到了不少啟發。這幾天感覺自己...
    kerush閱讀 1,065評論 0 6
  • Golang作為一種新的編程語言,也有著非常多的IDE,其中個人覺得使用IntelliJ開發是一種很不錯的選擇,但...
    姜家志閱讀 18,226評論 0 17
  • 版權聲明:本文為博主原創文章,未經博主允許不得轉載。 PS:轉載請注明出處作者:TigerChain地址:http...
    TigerChain閱讀 2,554評論 0 2
  • snippets config.cson keymap.cson styles.less 相關鏈接 Basic C...
    JetLu閱讀 3,012評論 0 0
  • 作者:王子亭 Atom 是 GitHub 在 2014 年發布的一款基于 Web 技術構建的文本編輯器,我從 20...
    LeanCloud官方帳號閱讀 3,120評論 0 13