Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/man/kmscon.1.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@
<term><option>--grab-zoom-in {grab}</option></term>
<listitem>
<para>Increase font size of the current terminal.
(default: &lt;Ctrl&gt;Plus)</para>
(default: &lt;Ctrl&gt;equal)</para>
</listitem>
</varlistentry>

Expand Down
4 changes: 2 additions & 2 deletions src/kmscon_conf.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ static void print_help()
"\t Shortcut to scroll page up\n"
"\t --grab-page-down <grab> [<Shift>Next]\n"
"\t Shortcut to scroll page down\n"
"\t --grab-zoom-in <grab> [<Ctrl>Plus]\n"
"\t --grab-zoom-in <grab> [<Ctrl>equal]\n"
"\t Shortcut to increase font size\n"
"\t --grab-zoom-out <grab> [<Ctrl>Minus]\n"
"\t Shortcut to decrease font size\n"
Expand Down Expand Up @@ -625,7 +625,7 @@ static struct conf_grab def_grab_page_down =
CONF_SINGLE_GRAB(SHL_SHIFT_MASK, XKB_KEY_Next);

static struct conf_grab def_grab_zoom_in =
CONF_SINGLE_GRAB(SHL_CONTROL_MASK, XKB_KEY_plus);
CONF_SINGLE_GRAB(SHL_CONTROL_MASK, XKB_KEY_equal);

static struct conf_grab def_grab_zoom_out =
CONF_SINGLE_GRAB(SHL_CONTROL_MASK, XKB_KEY_minus);
Expand Down