diff options
Diffstat (limited to '')
-rw-r--r-- | src/proto/indent.pro | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/proto/indent.pro b/src/proto/indent.pro new file mode 100644 index 0000000..277953e --- /dev/null +++ b/src/proto/indent.pro @@ -0,0 +1,16 @@ +/* indent.c */ +int cin_is_cinword(char_u *line); +pos_T *find_start_comment(int ind_maxcomment); +int cindent_on(void); +int cin_islabel(void); +int cin_iscase(char_u *s, int strict); +int cin_isscopedecl(char_u *s); +void parse_cino(buf_T *buf); +int get_c_indent(void); +int get_expr_indent(void); +int in_cinkeys(int keytyped, int when, int line_is_empty); +int get_lisp_indent(void); +void do_c_expr_indent(void); +void fixthisline(int (*get_the_indent)(void)); +void fix_indent(void); +/* vim: set ft=c : */ |