Atom

Atom : A hackable text editor for the 21st Century

Why Atom?

Editors like Sublime and TextMate offer convenience but only limited extensibility. On the other end of the spectrum, Emacs and Vim offer extreme flexibility, but they aren't very approachable and can only be customized with special-purpose scripting languages.

An open source text editor:We see Atom as a perfect complement to GitHub's primary mission of building better software by working together. Atom is a long-term investment, and GitHub will continue to support its development with a dedicated team going forward.

ubuntu install

sudo add-apt-repository ppa:webupd8team/atom  
sudo apt-get update  
sudo apt-get install atom 

Atom Basic

  1. Command Palette
    If you press Ctrl+Shift+P while focused in an editor pane, the command palette will pop up. This search-driven menu can do just about any major task that is possible in Atom.
    BTW:*Sublime text is Ctrl+P.

  2. Settings and Preferences
    To open the Settings View, you can:

  • Use the File > Settings menu item in the menu bar
  • Search for settings-view:open
  • in the Command Palette Use the Ctrl+, keybinding
  1. Open Project and Directories
  • Use the File > Open Folder menu item in the menu bar
  • shortkey:Ctrl+Shift+O
    while, if you wanna to open more directories, you can:
    BTW:this is sublime text can't make it.
  • Use the File > Add Project Folder menu item in the menu bar
  • shortkey:Ctrl+Shift+A

Snippets

http://blog.csdn.net/u010494080/article/details/50993771

git

http://blog.csdn.net/u010494080/article/details/51229211
http://blog.csdn.net/u010494080/article/details/50605654

http://jingyan.baidu.com/article/e5c39bf5aaf9f639d760338d.html

进阶学习

  1. activate-power-mode 震撼效果 packages
  2. atom-html-preview 实时预览HTML/CSS packages
    Press CTRL-SHIFT-H in the editor to open the preview pane.
  3. atom-simplified-chinese-menu 简体中文汉化扩展 packages
  4. spell-check

BTW:更多插件推荐学习

你可能感兴趣的:(Atom)