From b009b50e81b6c1d0d691505b5f5c0418f559bfc0 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Thu, 14 Mar 2019 23:19:58 +0100 Subject: Remove Atom config --- atom/packages/vim-mode/docs/overview.md | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 atom/packages/vim-mode/docs/overview.md (limited to 'atom/packages/vim-mode/docs/overview.md') diff --git a/atom/packages/vim-mode/docs/overview.md b/atom/packages/vim-mode/docs/overview.md deleted file mode 100644 index c59176c..0000000 --- a/atom/packages/vim-mode/docs/overview.md +++ /dev/null @@ -1,31 +0,0 @@ -## Overview - -* There are only currently two modes, normal mode and insert mode. -* Motions have repeat support, `d3w` will delete three words. -* Insert mode can be entered using `i`, `I`, `a`, `A`, `o`, or `O`. - * The following commands are supported in insert mode: - * `ctrl-y` to copy the character right above the cursor - * `ctrl-e` to copy the character right below the cursor (**disabled by default**, see note 1 below) -* Replace mode can be entered using `R` - * Limitations: - * If repeating with `.` gets a bit confused (e.g. by multiple cursors or when more than one line was typed), please report it with steps to reproduce if you can. -* Registers are a work in progress - * What Exists: - * `a-z` - Named registers - * `A-Z` - Appending to named registers - * `*`, `+` - System clipboard registers, although there's no distinction between the two currently. - * `%` - Current filename read-only register - * `_` - Blackhole register - * What Doesn't Exist: - * default buffer doesn't yet save on delete operations. -* Setting `wrapLeftRightMotion` acts like VIM's whichwrap=h,l,<,> - - -#### Notes - -1. To enable the VIM key binding `ctrl-e` to copy the character right below the cursor, please put this in your `keymap.cson`: - -``` -'atom-text-editor.vim-mode.insert-mode': - 'ctrl-e': 'vim-mode:copy-from-line-below' -``` -- cgit