Skip to content

Commit

Permalink
Add 'n' and 'p' keybindings
Browse files Browse the repository at this point in the history
  • Loading branch information
btrkeks committed Sep 14, 2024
1 parent be9e7b9 commit b972dac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frontends/gtk3popup/dictpopup-application.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ static void init_ui(DpApplication *self) {

static void init_accels(GApplication *app) {
const char *const close_window_accels[] = {"q", "Escape", NULL};
const char *const next_definition_accels[] = {"s", NULL};
const char *const previous_definition_accels[] = {"a", NULL};
const char *const next_definition_accels[] = {"s", "n", NULL};
const char *const previous_definition_accels[] = {"a", "p", NULL};
const char *const pronounce_accels[] = {"p", "r", NULL};
const char *const add_to_anki_accels[] = {"<Ctrl>s", NULL};
const char *const edit_lookup_accels[] = {"<Ctrl>e", NULL};
Expand Down

0 comments on commit b972dac

Please sign in to comment.