diff options
| -rw-r--r-- | main.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1699,8 +1699,11 @@ void mode_key_normal(Editor *e, u32 c) { case 'd': shell_run_no_prompt("git diff --color=always % | less -cr"); break; + case 'a': + shell_run_no_prompt("git add %"); + break; case 'c': - shell_run_no_prompt("git add % && git commit %"); + shell_run_no_prompt("git commit"); break; case 'S': shell_run("git status"); |
