aboutsummaryrefslogtreecommitdiff
path: root/src/indent.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/indent.h')
-rw-r--r--src/indent.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/indent.h b/src/indent.h
new file mode 100644
index 0000000000..f256a95e31
--- /dev/null
+++ b/src/indent.h
@@ -0,0 +1,11 @@
+#ifndef NEOVIM_INDENT_H
+#define NEOVIM_INDENT_H
+#include "vim.h"
+int get_indent(void);
+int get_indent_lnum(linenr_T lnum);
+int get_indent_buf(buf_T *buf, linenr_T lnum);
+int get_indent_str(char_u *ptr, int ts);
+int set_indent(int size, int flags);
+int copy_indent(int size, char_u *src);
+int get_number_indent(linenr_T lnum);
+#endif