diff options
author | Thanos Apollo <[email protected]> | 2024-01-01 13:03:02 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-01-01 13:03:02 +0200 |
commit | 08d540fc837e156b21ee35e4eeaea1788ea0b3d0 (patch) | |
tree | aa4662e745c852e8e52bf28b39ad0a063aed2c04 /gnosis.el | |
parent | e1f1ddba4618ed04115e8368e6c439c49ee6b819 (diff) |
gnosis-prompt-tag: Add "q" on options
Fixing issue when having require-match t, user can't select "q"
Diffstat (limited to 'gnosis.el')
-rw-r--r-- | gnosis.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -557,7 +557,7 @@ Returns a list of unique tags." (match (or match nil))) (while (not (string= tag "q")) (setf tag (completing-read (concat prompt (format " %s (q for quit): " tags)) - (gnosis-get-tags--unique) nil match)) + (cons "q" (gnosis-get-tags--unique)) nil match)) (unless (or (string= tag "q") (member tag tags)) (push tag tags))) (reverse tags))) |