From a8f54572352c8a553c0dfa56c54811b48b5c711b Mon Sep 17 00:00:00 2001 From: Grant Mathews Date: Fri, 24 Jun 2016 01:18:11 -0700 Subject: [PATCH] Update ROADMAP --- ROADMAP.md | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/ROADMAP.md b/ROADMAP.md index 1ba8ff51..bba5709a 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -64,8 +64,8 @@ Status | Command | Description :white_check_mark: | :1234: G | goto line N (default: last line), on the first non-blank character :white_check_mark: | :1234: gg | goto line N (default: first line), on the first non-blank character :white_check_mark: | :1234: % | goto line N percentage down in the file; N must be given, otherwise it is the |%| command - | :1234: gk | up N screen lines (differs from "k" when line wraps) - | :1234: gj | own N screen lines (differs from "j" when line wraps) +:x: | :1234: gk | up N screen lines (differs from "k" when line wraps) +:x: | :1234: gj | own N screen lines (differs from "j" when line wraps) ## Text object motions @@ -159,13 +159,6 @@ Status | Command | Description :white_check_mark: | End | cursor after last character in the line :white_check_mark: | Home | cursor to first character in the line -## Special inserts - -Status | Command | Description ----|--------|------------------------------ - | :r [file] | insert the contents of [file] below the cursor - | :r! {command} | insert the standard output of {command} below the cursor - ## Deleting text Status | Command | Description @@ -330,7 +323,7 @@ Status | Command | Description ---|--------|------------------------------ | :1234: !{motion}{command} | filter the lines that are moved over through {command} | :1234: !!{command} | filter N lines through {command} - | {visual}!{command} | filter the highlighted lines through {command} + | {visual}!{command} | filter the highlighted lines through {command} | :[range]! {command} | filter [range] lines through {command} | :1234: ={motion} | filter the lines that are moved over through 'equalprg' | :1234: == | filter N lines through 'equalprg' @@ -379,3 +372,11 @@ Status | Command | Description :x: | z CR or zt | redraw, current line at top of window :warning: | z. or zz | redraw, current line at center of window :x: | z- or zb | redraw, current line at bottom of window + + +## Special inserts + +Status | Command | Description +---|--------|------------------------------ + | :r [file] | insert the contents of [file] below the cursor + | :r! {command} | insert the standard output of {command} below the cursor