aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/indent.h
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2020-01-16 15:31:05 +0100
committerGitHub <noreply@github.com>2020-01-16 15:31:05 +0100
commit6e78b2162382718b638c4532a155e5c3f9ed7515 (patch)
tree5868096a30a61deed1765e1c9ec93072a4d0c34b /src/nvim/indent.h
parent8ba3354d74a8f90ded0997100bdbe845a8c5382f (diff)
parentca1a00edd6d6345b848a28d077d6a192528f811e (diff)
downloadrneovim-6e78b2162382718b638c4532a155e5c3f9ed7515.tar.gz
rneovim-6e78b2162382718b638c4532a155e5c3f9ed7515.tar.bz2
rneovim-6e78b2162382718b638c4532a155e5c3f9ed7515.zip
Merge pull request #11563 from bfredl/mark_madness
extmarks: mark sanity/madness
Diffstat (limited to 'src/nvim/indent.h')
-rw-r--r--src/nvim/indent.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/nvim/indent.h b/src/nvim/indent.h
index 6552157d20..f96732bf1c 100644
--- a/src/nvim/indent.h
+++ b/src/nvim/indent.h
@@ -3,10 +3,11 @@
#include "nvim/vim.h"
-/* flags for set_indent() */
-#define SIN_CHANGED 1 /* call changed_bytes() when line changed */
-#define SIN_INSERT 2 /* insert indent before existing text */
-#define SIN_UNDO 4 /* save line for undo before changing it */
+// flags for set_indent()
+#define SIN_CHANGED 1 // call changed_bytes() when line changed
+#define SIN_INSERT 2 // insert indent before existing text
+#define SIN_UNDO 4 // save line for undo before changing it
+#define SIN_NOMARK 8 // don't adjust extmarks
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "indent.h.generated.h"