master hovercats/oakiss / pkg / sacc / config.h
 1#define _key_lndown	'j' /* move one line down */
 2#define _key_entrydown	'J' /* move to next link */
 3#define _key_lnup	'k' /* move one line up */
 4#define _key_entryup	'K' /* move to previous link */
 5#define _key_pgdown	' ' /* move one screen down */
 6#define _key_pgup	'b' /* move one screen up */
 7#define _key_home	'g' /* move to the top of page */
 8#define _key_end	'G' /* move to the bottom of page */
 9#define _key_pgnext	'l' /* view highlighted item */
10#define _key_pgprev	'h' /* view previous item */
11#define _key_cururi	'U' /* print page uri */
12#define _key_seluri	'u' /* print item uri */
13#define _key_yankcur	'Y' /* yank page uri */
14#define _key_yanksel	'y' /* yank item uri */
15#define _key_fetch	'L' /* refetch current item */
16#define _key_help	'?' /* display help */
17#define _key_quit	'q' /* exit sacc */
18#define _key_search	'/' /* search */
19#define _key_searchnext	'n' /* search same string forward */
20#define _key_searchprev	'N' /* search same string backward */
21#ifdef NEED_CONF
22static char *yanker = "xclip";
23static char *plumber = "xdg-open";
24static int modalplumber = 0;
25static char tmpdir[] = "/tmp/sacc-XXXXXX";
26static char *typestr[] = {
27	[TXT] = "Txt+",
28	[DIR] = "Dir+",
29	[CSO] = "CSO|",
30	[ERR] = "Err|",
31	[MAC] = "Mac+",
32	[DOS] = "DOS+",
33	[UUE] = "UUE+",
34	[IND] = "Ind+",
35	[TLN] = "Tln|",
36	[BIN] = "Bin+",
37	[MIR] = "Mir+",
38	[IBM] = "IBM|",
39	[GIF] = "GIF+",
40	[IMG] = "Img+",
41	[URL] = "URL+",
42	[INF] = "   |",
43	[UNK] = " ? +",
44	[BRK] = "!  |", /* malformed entry */
45};
46#endif /* NEED_CONF */