https://github.com/melling/editornotes
Emacs, vim, Sublime, Atom, IntelliJ, etc
https://github.com/melling/editornotes
Last synced: 12 days ago
JSON representation
Emacs, vim, Sublime, Atom, IntelliJ, etc
- Host: GitHub
- URL: https://github.com/melling/editornotes
- Owner: melling
- Created: 2016-02-11T13:51:17.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-01-27T02:06:58.000Z (over 9 years ago)
- Last Synced: 2025-01-04T03:10:25.751Z (over 1 year ago)
- Size: 49.8 KB
- Stars: 23
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
#+STARTUP: showall
#+TITLE: Editor Notes
#+AUTHOR: http://h4labs.com
#+EMAIL: melling@h4labs.com
#+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-_||||