diff options
author | thing1 <thing1@seacrossedlovers.xyz> | 2025-02-08 10:57:32 +0000 |
---|---|---|
committer | thing1 <thing1@seacrossedlovers.xyz> | 2025-02-08 10:57:32 +0000 |
commit | b9b757e59478e625845c20ae24a1d624910a022e (patch) | |
tree | d5dbdf9c6f5426f31889c26b76956ec38c5c4afc /autocomplete.h | |
parent | 00e0578f38aaef6a2234ca9dcab540729fdf32e9 (diff) |
added minor patches
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 |