Skip to content
This repository has been archived by the owner on May 8, 2024. It is now read-only.

Commit

Permalink
Fix invalid document
Browse files Browse the repository at this point in the history
Action trigger key has changed from <Tab> to a by
3c19579

Fix #203
  • Loading branch information
lambdalisue committed May 6, 2019
1 parent 857605d commit 4f1c4a5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Pros.
- `:Gina!! {command}` will execute a git raw command in a shell (mainly for `:Gina!! add -p` or `:Gina!! rebase -i`)
- Action based. Users do not need to remember tons of mappings
- `?` to see the help
- `<Tab>` to select an action to perform
- `a` to select an action to perform (complete with `<Tab>`)
- `.` to repeat previous action
- All action can map to an actual keymap
- Author tried to follow Vim's flavor
Expand Down
10 changes: 5 additions & 5 deletions doc/gina.txt
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ The buffer contents indiceate the index status of each files.
The first line indicates that a "foo.txt" is staged and the last line
indicates a "bar.txt" isn't.

When users hit <Tab> on the last line, users will be asked to select an
When users hit "a" on the last line, users will be asked to select an
action to perform with a prompt like
>
action:
Expand All @@ -167,8 +167,8 @@ So now, type "sta" on that prompt like
>
action: sta
<
And now, hit <Tab> again and "stage" is completed. This is a basic behavior
of |cmdline-completion| so read that if you are not familiar with.
And now, hit <Tab> and "stage" is completed. This is a basic behavior of
|cmdline-completion| so read that if you are not familiar with.

And now, hit <Return> to perform the action. This will perform an
"index:stage" action which is aliased to "stage", what users just input.
Expand All @@ -181,7 +181,7 @@ Which indicates all changes are staged into the index.

So now, let's unstage "foo.txt" with an "index:unstage" action which is
aliased to "unstage".
Start a prompt by hitting <Tab> on the first line and type "uns" like
Start a prompt by hitting "a" on the first line and type "uns" like
>
action: uns
<
Expand Down Expand Up @@ -233,7 +233,7 @@ message like below will be displayed.
>
browse [browse] Bro..... <Plug>(gina-a...)[n]
...
<Tab> b..choice [choice] Sel..... <Plug>(gina-a...)[nvi]
a b..choice [choice] Sel..... <Plug>(gina-a...)[nvi]
? b..help [help] Sho..... <Plug>(gina-a...)[n]
...
<
Expand Down

0 comments on commit 4f1c4a5

Please sign in to comment.