EditorNotes
EditorNotes copied to clipboard
Emacs, vim, Sublime, Atom, IntelliJ, etc
#+STARTUP: showall #+TITLE: Editor Notes #+AUTHOR: http://h4labs.com #+EMAIL: [email protected] #+HTML_HEAD:
Menu: [[file:atom.org][Atom]] | [[file:emacs.org][Emacs]] / [[file:elisp.org][elisp]] / [[file:org-mode.org][Org Mode]] | [[file:intellij.org][IntelliJ]] | [[file:sublime.org][Sublime]] | [[file:vim.org][vim]] | [[file:xcode.org][Xcode]]
- Inbox
- https://pavelfatin.com/typing-with-pleasure/
-
Basic Navigation |Editor task|vim|emacs|Sublime|atom|xcode |--- |Goto line 2|2G, 2gg, or :2||| |Move down 9 lines|9j |Move up 9 lines|9k||| |beginning of line|0|C-a| |end of line|$|C-e| |First nonblank character on line|^||| |beginning of file|gg|ESC-<| |end of file|G|ESC->| |next word|w|ESC-n|| |previous word|b|ESC-b| |next camel word||| |previous camel word|||
-
Advanced Navigation |Editor task|vim|emacs|Sublime|atom|xcode |--- |Next blank line|}|||
-
Selection
|Editor task|vim|emacs|Sublime|atom|xcode |---
- Editing
|Editor task|vim|emacs|Sublime|atom|xcode |--- |join lines|J|ESC-^|||| |uppercase word| |lowercase word| |delete current line| |delete from cursor until end of line|| |undo|u|C-_||||