Skip to content

Commit

Permalink
Mark several features that have been implemented as complete in ROADM…
Browse files Browse the repository at this point in the history
…AP.md (#3620)
  • Loading branch information
J-Fields authored and jpoon committed Mar 24, 2019
1 parent 89597cb commit 6a6816b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,12 @@ Now follows an exhaustive list of every known Vim command that we could find.
| :white_check_mark: :star: | :1234: `?{pattern}[?[offset]]<CR>` | search backward for the Nth occurrence of {pattern} | Currently we only support JavaScript Regex but not Vim's in-house Regex engine. |
| :warning: | :1234: `/<CR>` | repeat last search, in the forward direction | {count} is not supported. |
| :warning: | :1234: `?<CR>` | repeat last search, in the backward direction | {count} is not supported. |
| :warning: | :1234: n | repeat last search | {count} is not supported. |
| :warning: | :1234: N | repeat last search, in opposite direction | {count} is not supported. |
| :white_check_mark: | :1234: n | repeat last search |
| :white_check_mark: | :1234: N | repeat last search, in opposite direction |
| :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 |
| :white_check_mark: | :1234: g\* | like "\*", but also find partial matches |
| :white_check_mark: | :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 |

Expand All @@ -148,8 +148,8 @@ Now follows an exhaustive list of every known Vim command that we could find.
| :white_check_mark: | '. | 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 |
| :white_check_mark: | :1234: CTRL-O | go to Nth older position in jump list |
| :white_check_mark: | :1234: CTRL-I | go to Nth newer position in jump list |
| :arrow_down: | :ju[mps] | print the jump list |

## Various motions
Expand Down Expand Up @@ -277,10 +277,10 @@ moving around:

## Digraphs

| Status | Command | Description |
| ------------ | --------------------------------------- | ----------------------------- |
| :arrow_down: | :dig[raphs] | show current list of digraphs |
| :arrow_down: | :dig[raphs] {char1}{char2} {number} ... | add digraph(s) to the list |
| Status | Command | Description |
| ------------------ | --------------------------------------- | ----------------------------- |
| :white_check_mark: | :dig[raphs] | show current list of digraphs |
| :arrow_down: | :dig[raphs] {char1}{char2} {number} ... | add digraph(s) to the list |

## Special inserts

Expand Down Expand Up @@ -379,7 +379,7 @@ Miscellanea:
| :arrow_down: | `{visual}!{command}<CR>` | filter the highlighted lines through {command} |
| :arrow_down: | `:[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: | :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 |
Expand Down

0 comments on commit 6a6816b

Please sign in to comment.