diff options
author | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-06 17:36:31 +0200 |
---|---|---|
committer | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-16 19:05:34 +0200 |
commit | 0564f781ab27aa7b419543f7867da6e761e179c5 (patch) | |
tree | c76de7737ca02b7acd0082c877a15fc6d38fcc5a /src/nvim/syntax_defs.h | |
parent | e288ddaee7d9c186c5829178691dbfac507d757d (diff) | |
download | rneovim-0564f781ab27aa7b419543f7867da6e761e179c5.tar.gz rneovim-0564f781ab27aa7b419543f7867da6e761e179c5.tar.bz2 rneovim-0564f781ab27aa7b419543f7867da6e761e179c5.zip |
vim: move disptick_T from vim.h to syntax_defs.h
Make vim.h smaller, bit by bit.
Diffstat (limited to 'src/nvim/syntax_defs.h')
-rw-r--r-- | src/nvim/syntax_defs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/syntax_defs.h b/src/nvim/syntax_defs.h index d8ef007ffc..11e342f870 100644 --- a/src/nvim/syntax_defs.h +++ b/src/nvim/syntax_defs.h @@ -9,6 +9,8 @@ # define SST_DIST 16 /* normal distance between entries */ # define SST_INVALID (synstate_T *)-1 /* invalid syn_state pointer */ +typedef unsigned short disptick_T; /* display tick type */ + /* struct passed to in_id_list() */ struct sp_syn { int inc_tag; /* ":syn include" unique tag */ |