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阅读 4,692评论 0 6
  • Golang作为一种新的编程语言,也有着非常多的IDE,其中个人觉得使用IntelliJ开发是一种很不错的选择,但...
    0xSen阅读 18,531评论 0 17
  • 版权声明:本文为博主原创文章,未经博主允许不得转载。 PS:转载请注明出处作者:TigerChain地址:http...
    TigerChain阅读 7,442评论 0 2
  • snippets config.cson keymap.cson styles.less 相关链接 Basic C...
    JetLu阅读 8,073评论 0 0
  • 作者:王子亭 Atom 是 GitHub 在 2014 年发布的一款基于 Web 技术构建的文本编辑器,我从 20...
    LeanCloud官方帐号阅读 8,371评论 0 13