summaryrefslogtreecommitdiff
path: root/helm-mode.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2016-02-16 19:44:13 +0100
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2016-02-16 19:44:13 +0100
commit5e0e28a62246ecf6b68aedc87fbf74b0d1c443de (patch)
treed2f541108bd94599846aaf37a237bcc8f3e9474e /helm-mode.el
parentbc81bfc0e5cad79d899c07b8bb9e7dfe73a11be3 (diff)
Fix dups in helm occur, don't use volatile in helm-mode by default.
* helm-mode.el (helm-comp-read): disable volatile by default. * helm.el (helm-search-from-candidate-buffer): Fix dups.
Diffstat (limited to 'helm-mode.el')
-rw-r--r--helm-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/helm-mode.el b/helm-mode.el
index 3edefba8..c68fa61d 100644
--- a/helm-mode.el
+++ b/helm-mode.el
@@ -296,7 +296,7 @@ If COLLECTION is an `obarray', a TEST should be needed. See `obarray'."
candidates-in-buffer
exec-when-only-one
quit-when-no-cand
- (volatile t)
+ volatile
sort
(fc-transformer 'helm-cr-default-transformer)
hist-fc-transformer
@@ -364,7 +364,7 @@ Keys description:
- EXEC-WHEN-ONLY-ONE: Bound `helm-execute-action-at-once-if-one'
to non--nil. (possibles values are t or nil).
-- VOLATILE: Use volatile attribute \(enabled by default\).
+- VOLATILE: Use volatile attribute.
- SORT: A predicate to give to `sort' e.g `string-lessp'
Use this only on small data as it is ineficient.