diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-01-31 13:48:09 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-01-31 13:48:09 +0100 |
commit | 4b47162ccede0b6d9cbb9473ad870220a24fbf54 (patch) | |
tree | ce99699b4391edf919bc8a849653516f231d3ef7 /src/proto/indent.pro | |
parent | bbb5f8d4c2cbc5f48556008875f57cbe7fc4ac6c (diff) | |
download | vim-git-4b47162ccede0b6d9cbb9473ad870220a24fbf54.tar.gz |
patch 8.1.0857: indent functionality is not separatedv8.1.0857
Problem: Ignore functionality is not separated.
Solution: Move indent functionality into a new file. (Yegappan Lakshmanan,
closes #3886)
Diffstat (limited to 'src/proto/indent.pro')
-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 000000000..277953eb1 --- /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 : */ |