Remove a lot of low priority markings

I think they were discouraging people from making issues
This commit is contained in:
Grant Mathews 2016-12-07 14:14:47 -08:00 committed by GitHub
parent dd7aa1974a
commit 27f525fdb0

View File

@ -32,7 +32,7 @@ Status | Command
:warning: | Marks
:white_check_mark: | Text Objects
:white_check_mark: | Visual Block Mode
:warning: | Replace Mode
:white_check_mark: | Replace Mode
:white_check_mark: | Multiple Select Mode
:warning: | Macros
:warning: | Buffer/Window/Tab
@ -126,10 +126,10 @@ Status | Command | Description | Note
:warning: | :1234: N | repeat last search, in opposite direction | {count} is not supported.
:white_check_mark: | :1234: * | search forward for the identifier under the cursor
:white_check_mark: | :1234: # | search backward for the identifier under the cursor
:arrow_down: | :1234: g* | like "*", but also find partial matches
:arrow_down: | :1234: g# | like "#", but also find partial matches
| :1234: g* | like "*", but also find partial matches
| :1234: g# | like "#", but also find partial matches
:white_check_mark: | gd | goto local declaration of identifier under the cursor
:arrow_down: | gD | goto global declaration of identifier under the cursor
| gD | goto global declaration of identifier under the cursor
## Marks and motions
@ -139,18 +139,18 @@ Status | Command | Description
:white_check_mark:| `{a-z} | go to mark {a-z} within current file
:white_check_mark:| `{A-Z} | go to mark {A-Z} in any file
:white_check_mark:| `{0-9} | go to the position where Vim was previously exited
:arrow_down:| `` | go to the position before the last jump
:arrow_down:| `" | go to the position when last editing this file
:arrow_down:| `[ | go to the start of the previously operated or put text
:arrow_down:| `] | go to the end of the previously operated or put text
:arrow_down:| `< | go to the start of the (previous) Visual area
:arrow_down:| `> | go to the end of the (previous) Visual area
:arrow_down:| `. | go to the position of the last change in this file
:arrow_down:| '{a-zA-Z0-9[]'"<>.} | same as `, but on the first non-blank in the line
:arrow_down:| :marks | print the active marks
:arrow_down:| :1234: CTRL-O | go to Nth older position in jump list
:arrow_down:| :1234: CTRL-I | go to Nth newer position in jump list
:arrow_down:| :ju[mps] | print the jump list
| `` | go to the position before the last jump
| `" | go to the position when last editing this file
| `[ | go to the start of the previously operated or put text
| `] | go to the end of the previously operated or put text
| `< | go to the start of the (previous) Visual area
| `> | go to the end of the (previous) Visual area
| `. | go to the position of the last change in this file
| '{a-zA-Z0-9[]'"<>.} | same as `, but on the first non-blank in the line
| :marks | print the active marks
| :1234: CTRL-O | go to Nth older position in jump list
| :1234: CTRL-I | go to Nth newer position in jump list
| :ju[mps] | print the jump list
## Various motions
@ -165,6 +165,8 @@ Status | Command | Description
## Using tags
The following are all marked low priority because VSCode has very good support for tags with ctrl-shift-t (or cmd-t on macOS). If these don't support your use case, please open an issue!
Status | Command | Description
---|--------|------------------------------
:arrow_down:| :ta[g][!] {tag} | jump to tag {tag}
@ -260,8 +262,8 @@ Status | Command | Description | Note
:white_check_mark: :star: | CTRL-A | insert previously inserted text | We apply previously document change made in previous Insert session and we only apply changes that happen under cursor
:white_check_mark: :star: | CTRL-@ | insert previously inserted text and stop Insert mode | As above
:white_check_mark: | CTRL-R {0-9a-z%#:.-="} | insert the contents of a register
:arrow_down:| CTRL-N | insert next match of identifier before the cursor
:arrow_down:| CTRL-P | insert previous match of identifier before the cursor
:white_check_mark: | CTRL-N | insert next match of identifier before the cursor
:white_check_mark: | CTRL-P | insert previous match of identifier before the cursor
:arrow_down:| CTRL-X ... | complete the word before the cursor in various ways
:white_check_mark: | BS or CTRL-H | delete the character before the cursor
:white_check_mark: | Del | delete the character under the cursor
@ -269,8 +271,8 @@ Status | Command | Description | Note
:white_check_mark: | CTRL-U | delete all entered characters in the current line
:white_check_mark: | CTRL-T | insert one shiftwidth of indent in front of the current line
:white_check_mark: | CTRL-D | delete one shiftwidth of indent in front of the current line
:arrow_down:| 0 CTRL-D | delete all indent in the current line
:arrow_down:| ^ CTRL-D | delete all indent in the current line, restore indent in next line
| 0 CTRL-D | delete all indent in the current line
| ^ CTRL-D | delete all indent in the current line, restore indent in next line
## Digraphs
@ -327,9 +329,9 @@ Status | Command | Description | Note
Status | Command | Description | Note
---|--------|------------|------------------
:white_check_mark: | :1234: r{char} | replace N characters with {char}
:arrow_down:| :1234: gr{char} | replace N characters without affecting layout
| :1234: gr{char} | replace N characters without affecting layout
:white_check_mark: :star: | :1234: R | enter Replace mode (repeat the entered text N times) | {count} is not supported
:arrow_down:| :1234: gR | enter virtual Replace mode: Like Replace mode but without affecting layout
:| :1234: gR | enter virtual Replace mode: Like Replace mode but without affecting layout
:white_check_mark:| {visual}r{char} | in Visual block, visual, or visual line modes: Replace each char of the selected text with {char}
(change = delete text and enter Insert mode)
@ -359,25 +361,25 @@ Status | Command | Description
:white_check_mark: | :1234: >{motion} | move the lines that are moved over with {motion} one shiftwidth right
:white_check_mark: | :1234: >> | move N lines one shiftwidth right
:white_check_mark:| :1234: gq{motion}| format the lines that are moved over with {motion} to 'textwidth' length
:arrow_down:| :[range]ce[nter] [width] | center the lines in [range]
:arrow_down:| :[range]le[ft] [indent] | left-align the lines in [range] (with [indent])
:arrow_down:| :[ranee]ri[ght] [width] | right-align the lines in [range]
| :[range]ce[nter] [width] | center the lines in [range]
| :[range]le[ft] [indent] | left-align the lines in [range] (with [indent])
| :[ranee]ri[ght] [width] | right-align the lines in [range]
## Complex changes
Status | Command | Description | Note
---|--------|------------------|------------
:arrow_down:| :1234: `!{motion}{command}<CR>` | filter the lines that are moved over through {command}
:arrow_down:| :1234: `!!{command}<CR>` | filter N lines through {command}
:arrow_down:| `{visual}!{command}<CR>` | filter the highlighted lines through {command}
:arrow_down:| `:[range]! {command}<CR>` | filter [range] lines through {command}
| :1234: `!{motion}{command}<CR>` | filter the lines that are moved over through {command}
| :1234: `!!{command}<CR>` | filter N lines through {command}
| `{visual}!{command}<CR>` | filter the highlighted lines through {command}
| `:[range]! {command}<CR>` | filter [range] lines through {command}
:white_check_mark: | :1234: ={motion} | filter the lines that are moved over through 'equalprg'
:arrow_down:| :1234: == | filter N lines through 'equalprg'
:white_check_mark: | {visual}= | filter the highlighted lines through 'equalprg'
:white_check_mark: :star: :warning: | :[range]s[ubstitute]/{pattern}/{string}/[g][c] | substitute {pattern} by {string} in [range] lines; with [g], replace all occurrences of {pattern}; with [c], confirm each replacement | Currently we only support JavaScript Regex and only options `gi` are implemented
:arrow_down:| :[range]s[ubstitute] [g][c] | repeat previous ":s" with new range and options
:arrow_down:| & | Repeat previous ":s" on current line without options
:arrow_down:| :[range]ret[ab][!] [tabstop] | set 'tabstop' to new value and adjust white space accordingly
| :[range]s[ubstitute] [g][c] | repeat previous ":s" with new range and options
| & | Repeat previous ":s" on current line without options
| :[range]ret[ab][!] [tabstop] | set 'tabstop' to new value and adjust white space accordingly
## Visual mode
@ -386,7 +388,7 @@ Status | Command | Description
:white_check_mark: | v | start highlighting characters
:white_check_mark: | V | start highlighting linewise
:white_check_mark:| o | exchange cursor position with start of highlighting
:arrow_down: | gv | start highlighting on previous visual area
| gv | start highlighting on previous visual area
:white_check_mark: | v | highlight characters or stop highlighting
:white_check_mark: | V | highlight linewise or stop highlighting
:white_check_mark: | CTRL-V | highlight blockwise or stop highlighting
@ -425,15 +427,15 @@ Status | Command | Description
Status | Command | Description | Note
---|--------|--------------|----------------
:white_check_mark: :star: | :1234: . | repeat last change (with count replaced with N) | Content changes that don't happen under cursor can not be repeated.
:arrow_down:| q{a-z} | record typed characters into register {a-z}
:arrow_down:| q{A-Z} | record typed characters, appended to register {a-z}
:arrow_down:| q | stop recording
:arrow_down:| :1234: @{a-z} | execute the contents of register {a-z} (N times)
:arrow_down:| :1234: @@ | repeat previous @{a-z} (N times)
:arrow_down:| :@{a-z} | execute the contents of register {a-z} as an Ex command
:arrow_down:| :@@ | repeat previous :@{a-z}
:arrow_down:| :[range]g[lobal]/{pattern}/[cmd] | execute Ex command [cmd] (default: ":p") on the lines within [range] where {pattern} matches
:arrow_down:| :[range]g[lobal]!/{pattern}/[cmd] | execute Ex command [cmd] (default: ":p") on the lines within [range] where {pattern} does NOT match
:white_check_mark:| q{a-z} | record typed characters into register {a-z}
| q{A-Z} | record typed characters, appended to register {a-z}
:white_check_mark:| q | stop recording
:white_check_mark:| :1234: @{a-z} | execute the contents of register {a-z} (N times)
:white_check_mark:| :1234: @@ | repeat previous @{a-z} (N times)
| :@{a-z} | execute the contents of register {a-z} as an Ex command
| :@@ | repeat previous :@{a-z}
| :[range]g[lobal]/{pattern}/[cmd] | execute Ex command [cmd] (default: ":p") on the lines within [range] where {pattern} matches
| :[range]g[lobal]!/{pattern}/[cmd] | execute Ex command [cmd] (default: ":p") on the lines within [range] where {pattern} does NOT match
:arrow_down: | :so[urce] {file} | read Ex commands from {file}
:arrow_down: | :so[urce]! {file} | read Vim commands from {file}
:arrow_down: | :sl[eep] [sec] | don't do anything for [sec] seconds
@ -480,7 +482,7 @@ Status | Command | Description | Note
---|--------|-------|------------------------------
:warning:| :1234: u | undo last N changes | Current implementation may not cover every case perfectly.
:warning: | :1234: CTRL-R | redo last N undone changes | As above.
:arrow_down:| U | restore last changed line
| U | restore last changed line
## External commands
@ -502,8 +504,8 @@ Status | Command | Description | Note
:white_check_mark: | % | equal to 1,$ (the entire file)
:white_check_mark: | * | equal to '<,'> (visual area)
:white_check_mark: | 't | position of mark t
:arrow_down: | /{pattern}[/] | the next line where {pattern} matches
:arrow_down: | ?{pattern}[?] | the previous line where {pattern} matches
| /{pattern}[/] | the next line where {pattern} matches
| ?{pattern}[?] | the previous line where {pattern} matches
:white_check_mark: | +[num] | add [num] to the preceding line number (default: 1)
:white_check_mark: | -[num] | subtract [num] from the preceding line number (default: 1)