diff --git a/ROADMAP.md b/ROADMAP.md index ae982fa6..aa016f17 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -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]]` | search backward for the Nth occurrence of {pattern} | Currently we only support JavaScript Regex but not Vim's in-house Regex engine. | | :warning: | :1234: `/` | repeat last search, in the forward direction | {count} is not supported. | | :warning: | :1234: `?` | 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 | @@ -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 @@ -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 @@ -379,7 +379,7 @@ Miscellanea: | :arrow_down: | `{visual}!{command}` | filter the highlighted lines through {command} | | :arrow_down: | `:[range]! {command}` | 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 |