aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/types.h
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-01-15 23:59:40 +0100
committerGitHub <noreply@github.com>2022-01-15 23:59:40 +0100
commit561df30981461a0e20966839c716f07665b107c0 (patch)
treeb9434752eb6fafca2695c451ab5523d8489f5c65 /src/nvim/types.h
parentb455e0179b4288c69e6231bfcf8d1c132b78f2fc (diff)
parent95ab979fde66d8f9f97fceb943bfe9422739a0f8 (diff)
downloadrneovim-561df30981461a0e20966839c716f07665b107c0.tar.gz
rneovim-561df30981461a0e20966839c716f07665b107c0.tar.bz2
rneovim-561df30981461a0e20966839c716f07665b107c0.zip
Merge pull request #16836 from bfredl/mark2
refactor(marks): use a more efficient representation with less pointer indirection
Diffstat (limited to 'src/nvim/types.h')
-rw-r--r--src/nvim/types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/types.h b/src/nvim/types.h
index 604155c33e..73cd2204d6 100644
--- a/src/nvim/types.h
+++ b/src/nvim/types.h
@@ -32,4 +32,6 @@ typedef enum {
kTrue = 1,
} TriState;
+typedef struct Decoration Decoration;
+
#endif // NVIM_TYPES_H