forked from Lainports/freebsd-ports
- Define LICENSE (GPLv2) and remove it (and some other useless files) from PORTDOCS - Remove pkg-plist; use PLIST_FILES/PORTDOCS instead - Adjust COMMENT and canonicalize Makefile header - Always include large file support as it seems there is no reason not to enable it these days - Remove useless MASTER_SITE_SUBDIR and add missing USE_NCURSES knobs - Deorbit custom do-install target; instead use post-install for PORTDOCS - Unmute installation commands Submitted by: zeus@ibs.dn.ua (version update; cleanups and bugs are mine) Approved by: maintainer timeout (over 6 months)
21 lines
730 B
C
21 lines
730 B
C
--- src/control.c.old 2011-07-14 21:48:59.000000000 +0200
|
|
+++ src/control.c 2011-07-14 21:54:55.000000000 +0200
|
|
@@ -395,12 +395,12 @@
|
|
};
|
|
|
|
static KEY_BINDING tab_log[] = {
|
|
- { 0, 0, WCH_CTRL('M'), cx_pan_home, 0 },
|
|
- { 1, 0, KEY_LEFT, cx_log_left, 0 },
|
|
- { 1, 0, KEY_RIGHT, cx_log_right, 0 },
|
|
- { 1, 0, KEY_HOME, cx_log_home, 0 },
|
|
- { 0, 0, L'm', cx_log_mark, 0 },
|
|
- { 0, 1, L'l', cx_trans_return, 0 },
|
|
+ { 0, 0, WCH_CTRL('M'), cx_pan_home, 0 },
|
|
+ { 1, 0, KEY_LEFT, cx_log_left, OPT_NOFILT },
|
|
+ { 1, 0, KEY_RIGHT, cx_log_right, OPT_NOFILT },
|
|
+ { 1, 0, KEY_HOME, cx_log_home, OPT_NOFILT },
|
|
+ { 0, 0, L'm', cx_log_mark, OPT_NOFILT },
|
|
+ { 0, 1, L'l', cx_trans_return, 0 },
|
|
END_TABLE
|
|
};
|
|
|