aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/types.h
diff options
context:
space:
mode:
authorKalle Ranki <kalle.ranki@gmail.com>2016-09-04 10:54:41 +0300
committerJustin M. Keyes <justinkz@gmail.com>2016-09-04 09:54:41 +0200
commite75e9c10dc947bc4aac0aea927e47038bf984b7f (patch)
tree60a6c0ac9f79c68155ab33321261525352b9b221 /src/nvim/types.h
parent9bba8ba372298d7cfac543085df6546e18d2c256 (diff)
downloadrneovim-e75e9c10dc947bc4aac0aea927e47038bf984b7f.tar.gz
rneovim-e75e9c10dc947bc4aac0aea927e47038bf984b7f.tar.bz2
rneovim-e75e9c10dc947bc4aac0aea927e47038bf984b7f.zip
test: Add unittest spec for option.c (#5289)
Move typedef expand_T to types.h for tests Fix lint error for old style comments Describe 'check_ff_value' valid values as an initial test. Fix 'get_sts_value' comment inaccuracy and add unit test for it
Diffstat (limited to 'src/nvim/types.h')
-rw-r--r--src/nvim/types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/types.h b/src/nvim/types.h
index bfe8be2091..35a5d1e2bd 100644
--- a/src/nvim/types.h
+++ b/src/nvim/types.h
@@ -13,4 +13,5 @@ typedef unsigned char char_u;
// Can hold one decoded UTF-8 character.
typedef uint32_t u8char_T;
+typedef struct expand expand_T;
#endif // NVIM_TYPES_H