Skip to content
bastien edited this page Sep 29, 2016 · 6 revisions

Atom

https://atom.io/

To set 'atom' and 'apm' in path

Go to Atom/Install Shell Commands in menu

Install packages in command line

apm install script autocomplete-paths git-plus merge-conflicts sublime-style-column-selection

# To uninstall:
apm uninstall autocomplete-plus # Now bundled with Atom

Git-plus cmds:

Cmd-Shift-H -> Showing the Git-Plus Palette

Cmd-Shift-A S -> Show current status (git status)

Cmd-Shift-A P -> Add all commit and push

Cmd-Shift-A a -> Git Add All and Commit

Add keyboard shortcuts in keymap.cson

cmd+shift+P -> Application: Open your keymap)

'body':
  # loop through panes
  'ctrl-`': 'window:focus-next-pane'
  'ctrl-shift-`': 'window:focus-previous-pane'
  # scroll by page "TextWrangler-like"
  'alt-up': 'core:page-up'
  'alt-down': 'core:page-down'

Also

http://brendankemp.com/essays/atom-is-ready-to-be-your-editor/

Clone this wiki locally