2 * Copyright (C) 1984-2014 Mark Nudelman
4 * You may distribute under the terms of either the GNU General Public
5 * License or the Less License, as specified in the README file.
7 * For more information, see the README file.
12 * lesskey [-o output] [input]
14 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
17 * If no input file is specified, standard input is used.
18 * If no output file is specified, $HOME/.less is used.
20 * The .less file is used to specify (to "less") user-defined
21 * key bindings. Basically any sequence of 1 to MAX_CMDLEN
22 * keystrokes may be bound to an existing less function.
24 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
26 * The input file is an ascii file consisting of a
27 * sequence of lines of the form:
28 * string <whitespace> action [chars] <newline>
30 * "string" is a sequence of command characters which form
31 * the new user-defined command. The command
33 * 1. The actual character itself.
34 * 2. A character preceded by ^ to specify a
35 * control character (e.g. ^X means control-X).
36 * 3. A backslash followed by one to three octal digits
37 * to specify a character by its octal value.
38 * 4. A backslash followed by b, e, n, r or t
39 * to specify \b, ESC, \n, \r or \t, respectively.
40 * 5. Any character (other than those mentioned above) preceded
41 * by a \ to specify the character itself (characters which
42 * must be preceded by \ include ^, \, and whitespace.
43 * "action" is the name of a "less" action, from the table below.
44 * "chars" is an optional sequence of characters which is treated
45 * as keyboard input after the command is executed.
47 * Blank lines and lines which start with # are ignored,
48 * except for the special control lines:
49 * #command Signals the beginning of the command
51 * #line-edit Signals the beginning of the line-editing
53 * #env Signals the beginning of the environment
55 * #stop Stops command parsing in less;
56 * causes all default keys to be disabled.
58 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
60 * The output file is a non-ascii file, consisting of a header,
61 * one or more sections, and a trailer.
62 * Each section begins with a section header, a section length word
63 * and the section data. Normally there are three sections:
64 * CMD_SECTION Definition of command keys.
65 * EDIT_SECTION Definition of editing keys.
66 * END_SECTION A special section header, with no
67 * length word or section data.
69 * Section data consists of zero or more byte sequences of the form:
72 * string <0> <action|A_EXTRA> chars <0>
74 * "string" is the command string.
75 * "<0>" is one null byte.
76 * "<action>" is one byte containing the action code (the A_xxx value).
77 * If action is ORed with A_EXTRA, the action byte is followed
78 * by the null-terminated "chars" string.
80 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
93 struct cmdname cmdnames
[] =
95 { "back-bracket", A_B_BRACKET
},
96 { "back-line", A_B_LINE
},
97 { "back-line-force", A_BF_LINE
},
98 { "back-screen", A_B_SCREEN
},
99 { "back-scroll", A_B_SCROLL
},
100 { "back-search", A_B_SEARCH
},
101 { "back-window", A_B_WINDOW
},
102 { "debug", A_DEBUG
},
103 { "digit", A_DIGIT
},
104 { "display-flag", A_DISP_OPTION
},
105 { "display-option", A_DISP_OPTION
},
107 { "examine", A_EXAMINE
},
108 { "filter", A_FILTER
},
109 { "first-cmd", A_FIRSTCMD
},
110 { "firstcmd", A_FIRSTCMD
},
111 { "flush-repaint", A_FREPAINT
},
112 { "forw-bracket", A_F_BRACKET
},
113 { "forw-forever", A_F_FOREVER
},
114 { "forw-until-hilite", A_F_UNTIL_HILITE
},
115 { "forw-line", A_F_LINE
},
116 { "forw-line-force", A_FF_LINE
},
117 { "forw-screen", A_F_SCREEN
},
118 { "forw-screen-force", A_FF_SCREEN
},
119 { "forw-scroll", A_F_SCROLL
},
120 { "forw-search", A_F_SEARCH
},
121 { "forw-window", A_F_WINDOW
},
122 { "goto-end", A_GOEND
},
123 { "goto-end-buffered", A_GOEND_BUF
},
124 { "goto-line", A_GOLINE
},
125 { "goto-mark", A_GOMARK
},
127 { "index-file", A_INDEX_FILE
},
128 { "invalid", A_UINVALID
},
129 { "left-scroll", A_LSHIFT
},
130 { "next-file", A_NEXT_FILE
},
131 { "next-tag", A_NEXT_TAG
},
132 { "noaction", A_NOACTION
},
133 { "percent", A_PERCENT
},
135 { "prev-file", A_PREV_FILE
},
136 { "prev-tag", A_PREV_TAG
},
138 { "remove-file", A_REMOVE_FILE
},
139 { "repaint", A_REPAINT
},
140 { "repaint-flush", A_FREPAINT
},
141 { "repeat-search", A_AGAIN_SEARCH
},
142 { "repeat-search-all", A_T_AGAIN_SEARCH
},
143 { "reverse-search", A_REVERSE_SEARCH
},
144 { "reverse-search-all", A_T_REVERSE_SEARCH
},
145 { "right-scroll", A_RSHIFT
},
146 { "set-mark", A_SETMARK
},
147 { "shell", A_SHELL
},
148 { "status", A_STAT
},
149 { "toggle-flag", A_OPT_TOGGLE
},
150 { "toggle-option", A_OPT_TOGGLE
},
151 { "undo-hilite", A_UNDO_SEARCH
},
152 { "version", A_VERSION
},
153 { "visual", A_VISUAL
},
157 struct cmdname editnames
[] =
159 { "back-complete", EC_B_COMPLETE
},
160 { "backspace", EC_BACKSPACE
},
161 { "delete", EC_DELETE
},
164 { "expand", EC_EXPAND
},
165 { "forw-complete", EC_F_COMPLETE
},
167 { "insert", EC_INSERT
},
168 { "invalid", EC_UINVALID
},
169 { "kill-line", EC_LINEKILL
},
170 { "abort", EC_ABORT
},
172 { "literal", EC_LITERAL
},
173 { "right", EC_RIGHT
},
175 { "word-backspace", EC_W_BACKSPACE
},
176 { "word-delete", EC_W_DELETE
},
177 { "word-left", EC_W_LEFT
},
178 { "word-right", EC_W_RIGHT
},
184 struct cmdname
*names
;
186 char buffer
[MAX_USERCMD
];
189 struct table cmdtable
;
190 struct table edittable
;
191 struct table vartable
;
192 struct table
*currtable
= &cmdtable
;
194 char fileheader
[] = {
200 char filetrailer
[] = {
201 C0_END_LESSKEY_MAGIC
,
202 C1_END_LESSKEY_MAGIC
,
205 char cmdsection
[1] = { CMD_SECTION
};
206 char editsection
[1] = { EDIT_SECTION
};
207 char varsection
[1] = { VAR_SECTION
};
208 char endsection
[1] = { END_SECTION
};
211 char *outfile
= NULL
;
216 extern char version
[];
221 fprintf(stderr
, "usage: lesskey [-o output] [input]\n");
226 mkpathname(dirname
, filename
)
232 pathname
= calloc(strlen(dirname
) + strlen(filename
) + 2, sizeof(char));
233 strcpy(pathname
, dirname
);
234 strcat(pathname
, PATHNAME_SEP
);
235 strcat(pathname
, filename
);
240 * Figure out the name of a default file (in the user's HOME directory).
249 if ((p
= getenv("HOME")) != NULL
&& *p
!= '\0')
250 pathname
= mkpathname(p
, filename
);
252 else if ((p
= getenv("INIT")) != NULL
&& *p
!= '\0')
253 pathname
= mkpathname(p
, filename
);
257 fprintf(stderr
, "cannot find $HOME - using current directory\n");
258 pathname
= mkpathname(".", filename
);
264 * Parse command line arguments.
267 parse_args(argc
, argv
)
278 /* Arg does not start with "-"; it's not an option. */
281 /* "-" means standard input. */
283 if (arg
[1] == '-' && arg
[2] == '\0')
285 /* "--" means end of options. */
293 if (strncmp(arg
, "--output", 8) == 0)
297 else if (arg
[8] == '=')
303 if (strcmp(arg
, "--version") == 0)
310 outfile
= &argv
[0][2];
312 if (*outfile
== '\0')
321 printf("lesskey version %s\n", version
);
330 * Open the input file, or use DEF_LESSKEYINFILE if none specified.
335 infile
= homefile(DEF_LESSKEYINFILE
);
339 * Initialize data structures.
344 cmdtable
.names
= cmdnames
;
345 cmdtable
.pbuffer
= cmdtable
.buffer
;
347 edittable
.names
= editnames
;
348 edittable
.pbuffer
= edittable
.buffer
;
350 vartable
.names
= NULL
;
351 vartable
.pbuffer
= vartable
.buffer
;
355 * Parse one character of a string.
366 static char tstr_control_k
[] =
367 { SK_SPECIAL_KEY
, SK_CONTROL_K
, 6, 1, 1, 1, '\0' };
376 case '0': case '1': case '2': case '3':
377 case '4': case '5': case '6': case '7':
379 * Parse an octal number.
384 ch
= 8*ch
+ (*p
- '0');
385 while (*++p
>= '0' && *p
<= '7' && ++i
< 3);
387 if (xlate
&& ch
== CONTROL('K'))
388 return tstr_control_k
;
414 case 'u': ch
= SK_UP_ARROW
; break;
415 case 'd': ch
= SK_DOWN_ARROW
; break;
416 case 'r': ch
= SK_RIGHT_ARROW
; break;
417 case 'l': ch
= SK_LEFT_ARROW
; break;
418 case 'U': ch
= SK_PAGE_UP
; break;
419 case 'D': ch
= SK_PAGE_DOWN
; break;
420 case 'h': ch
= SK_HOME
; break;
421 case 'e': ch
= SK_END
; break;
422 case 'x': ch
= SK_DELETE
; break;
424 error("illegal char after \\k");
429 buf
[0] = SK_SPECIAL_KEY
;
441 * Backslash followed by any other char
442 * just means that char.
447 if (xlate
&& buf
[0] == CONTROL('K'))
448 return tstr_control_k
;
453 * Caret means CONTROL.
456 buf
[0] = CONTROL(p
[1]);
458 if (buf
[0] == CONTROL('K'))
459 return tstr_control_k
;
465 if (xlate
&& buf
[0] == CONTROL('K'))
466 return tstr_control_k
;
471 * Skip leading spaces in a string.
477 while (*s
== ' ' || *s
== '\t')
483 * Skip non-space characters in a string.
489 while (*s
!= '\0' && *s
!= ' ' && *s
!= '\t')
495 * Clean up an input line:
496 * strip off the trailing newline & any trailing # comment.
505 for (i
= 0; s
[i
] != '\n' && s
[i
] != '\r' && s
[i
] != '\0'; i
++)
506 if (s
[i
] == '#' && (i
== 0 || s
[i
-1] != '\\'))
513 * Add a byte to the output command table.
519 if (currtable
->pbuffer
>= currtable
->buffer
+ MAX_USERCMD
)
521 error("too many commands");
524 *(currtable
->pbuffer
)++ = c
;
528 * Add a string to the output command table.
534 for ( ; *s
!= '\0'; s
++)
539 * See if we have a special "control" line.
545 #define PREFIX(str,pat) (strncmp(str,pat,strlen(pat)) == 0)
547 if (PREFIX(s
, "#line-edit"))
549 currtable
= &edittable
;
552 if (PREFIX(s
, "#command"))
554 currtable
= &cmdtable
;
557 if (PREFIX(s
, "#env"))
559 currtable
= &vartable
;
562 if (PREFIX(s
, "#stop"))
565 add_cmd_char(A_END_LIST
);
575 fputbytes(fd
, buf
, len
)
582 fwrite(buf
, sizeof(char), 1, fd
);
588 * Output an integer, in special KRADIX form.
597 if (val
>= KRADIX
*KRADIX
)
599 fprintf(stderr
, "error: integer too big (%d > %d)\n",
604 fwrite(&c
, sizeof(char), 1, fd
);
606 fwrite(&c
, sizeof(char), 1, fd
);
610 * Find an action, given the name of the action.
618 for (i
= 0; currtable
->names
[i
].cn_name
!= NULL
; i
++)
619 if (strcmp(currtable
->names
[i
].cn_name
, actname
) == 0)
620 return (currtable
->names
[i
].cn_action
);
621 error("unknown action");
629 fprintf(stderr
, "line %d: %s\n", linenum
, s
);
645 * Parse the command string and store it in the current table.
651 cmdlen
+= (int) strlen(s
);
652 if (cmdlen
> MAX_CMDLEN
)
653 error("command too long");
656 } while (*p
!= ' ' && *p
!= '\t' && *p
!= '\0');
658 * Terminate the command string with a null byte.
663 * Skip white space between the command string
664 * and the action name.
665 * Terminate the action name with a null byte.
670 error("missing action");
679 * Parse the action name and store it in the current table.
681 action
= findaction(actname
);
684 * See if an extra string follows the action name.
690 add_cmd_char(action
);
694 * OR the special value A_EXTRA into the action byte.
695 * Put the extra string after the action byte.
697 add_cmd_char(action
| A_EXTRA
);
699 add_cmd_str(tstr(&p
, 0));
714 } while (*p
!= ' ' && *p
!= '\t' && *p
!= '=' && *p
!= '\0');
716 * Terminate the variable name with a null byte.
727 add_cmd_char(EV_OK
|A_EXTRA
);
739 * Parse a line from the lesskey file.
748 * See if it is a control line.
750 if (control_line(line
))
753 * Skip leading white space.
754 * Replace the final newline with a null byte.
755 * Ignore blank lines and comments.
757 p
= clean_line(line
);
761 if (currtable
== &vartable
)
777 if (getenv("HOME") == NULL
)
780 * If there is no HOME environment variable,
781 * try the concatenation of HOMEDRIVE + HOMEPATH.
783 char *drive
= getenv("HOMEDRIVE");
784 char *path
= getenv("HOMEPATH");
785 if (drive
!= NULL
&& path
!= NULL
)
787 char *env
= (char *) calloc(strlen(drive
) +
788 strlen(path
) + 6, sizeof(char));
789 strcpy(env
, "HOME=");
798 * Process command line arguments.
800 parse_args(argc
, argv
);
804 * Open the input file.
806 if (strcmp(infile
, "-") == 0)
808 else if ((desc
= fopen(infile
, "r")) == NULL
)
813 fprintf(stderr
, "Cannot open %s\n", infile
);
819 * Read and parse the input file, one line at a time.
823 while (fgets(line
, sizeof(line
), desc
) != NULL
)
830 * Write the output file.
831 * If no output file was specified, use "$HOME/.less"
835 fprintf(stderr
, "%d errors; no output produced\n", errors
);
840 outfile
= getenv("LESSKEY");
842 outfile
= homefile(LESSKEYFILE
);
843 if ((out
= fopen(outfile
, "wb")) == NULL
)
848 fprintf(stderr
, "Cannot open %s\n", outfile
);
854 fputbytes(out
, fileheader
, sizeof(fileheader
));
856 /* Command key section */
857 fputbytes(out
, cmdsection
, sizeof(cmdsection
));
858 fputint(out
, cmdtable
.pbuffer
- cmdtable
.buffer
);
859 fputbytes(out
, (char *)cmdtable
.buffer
, cmdtable
.pbuffer
-cmdtable
.buffer
);
860 /* Edit key section */
861 fputbytes(out
, editsection
, sizeof(editsection
));
862 fputint(out
, edittable
.pbuffer
- edittable
.buffer
);
863 fputbytes(out
, (char *)edittable
.buffer
, edittable
.pbuffer
-edittable
.buffer
);
865 /* Environment variable section */
866 fputbytes(out
, varsection
, sizeof(varsection
));
867 fputint(out
, vartable
.pbuffer
- vartable
.buffer
);
868 fputbytes(out
, (char *)vartable
.buffer
, vartable
.pbuffer
-vartable
.buffer
);
871 fputbytes(out
, endsection
, sizeof(endsection
));
872 fputbytes(out
, filetrailer
, sizeof(filetrailer
));