diff options
Diffstat (limited to 'autocomplete.h')
-rw-r--r-- | autocomplete.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/autocomplete.h b/autocomplete.h new file mode 100644 index 0000000..fc88447 --- /dev/null +++ b/autocomplete.h @@ -0,0 +1,16 @@ +# ifndef __ST_AUTOCOMPLETE_H +# define __ST_AUTOCOMPLETE_H + +enum { + ACMPL_DEACTIVATE, + ACMPL_WORD, + ACMPL_WWORD, + ACMPL_FUZZY_WORD, + ACMPL_FUZZY_WWORD, + ACMPL_FUZZY, + ACMPL_SUFFIX, + ACMPL_SURROUND, + ACMPL_UNDO, +}; + +# endif // __ST_AUTOCOMPLETE_H |