about summary refs log tree commit diff
path: root/cmd.h
blob: 2507ca57a7e95656f19ec276de7b939250ce8173 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef CMD_H
#define CMD_H

typedef void (*cgit_cmd_fn)(void);
typedef void (*cgit_cmd_pre_fn)(void);

struct cgit_cmd {
	const char *name;
	cgit_cmd_fn fn;
	cgit_cmd_pre_fn pre;
	unsigned int want_repo:1,
		want_layout:1,
		want_vpath:1,
		is_clone:1;
};

extern struct cgit_cmd *cgit_get_cmd(void);

#endif /* CMD_H */
href='/src/commit/bin/man1/atch.1?id=babba03a94db976db9a16da59fcaa0461c79ad14&follow=1'>Generate html for binsJune McEnroe 2019-02-10Use italic for underline in nvim man modeJune McEnroe 2019-02-10Add plain text "language" to hiJune McEnroe 2019-02-10Don't match DQ string inside SQ stringJune McEnroe 2019-02-10Skip only one character if a match fails due to parentJune McEnroe 2019-02-10Remove pattend from hiJune McEnroe 2019-02-10Replace uses of pattend with newline patternsJune McEnroe 2019-02-10Add hi debug outputJune McEnroe 2019-02-10Actually do HTML " escapingJune McEnroe 2019-02-10Set git commit.verboseJune McEnroe 2019-02-10Add back missing static keywordJune McEnroe