summaryrefslogtreecommitdiff
path: root/src/proto/indent.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-01-31 13:48:09 +0100
committerBram Moolenaar <Bram@vim.org>2019-01-31 13:48:09 +0100
commit4b47162ccede0b6d9cbb9473ad870220a24fbf54 (patch)
treece99699b4391edf919bc8a849653516f231d3ef7 /src/proto/indent.pro
parentbbb5f8d4c2cbc5f48556008875f57cbe7fc4ac6c (diff)
downloadvim-git-8.1.0857.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.pro16
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 : */