about summary refs log tree commit diff
path: root/Src/Zle/comp.h
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@gmail.com>2022-03-26 02:34:31 +0100
committerMikael Magnusson <mikachu@gmail.com>2022-03-30 08:07:39 +0200
commit6a9b3bb290abc1f9427f6574d9b12ec00108f907 (patch)
tree72abe19c970ca95cd7702c9c1e05d9adc1f2b9de /Src/Zle/comp.h
parent48be30e530a6786f1d47a3dd79f4b6eef2967639 (diff)
downloadzsh-6a9b3bb290abc1f9427f6574d9b12ec00108f907.tar.gz
zsh-6a9b3bb290abc1f9427f6574d9b12ec00108f907.tar.xz
zsh-6a9b3bb290abc1f9427f6574d9b12ec00108f907.zip
49915: Efficient dedup for unsorted completions
Diffstat (limited to 'Src/Zle/comp.h')
-rw-r--r--Src/Zle/comp.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Src/Zle/comp.h b/Src/Zle/comp.h
index a8480c2ba..2ca779fe5 100644
--- a/Src/Zle/comp.h
+++ b/Src/Zle/comp.h
@@ -140,6 +140,7 @@ struct cmatch {
 #define CMF_ALL      (1<<13)	/* a match representing all other matches */
 #define CMF_DUMMY    (1<<14)	/* unselectable dummy match */
 #define CMF_MORDER   (1<<15)    /* order by matches, not display strings */
+#define CMF_DELETE   (1<<16)    /* used for deduplication of unsorted matches, don't set */
 
 /* Stuff for completion matcher control. */