summaryrefslogtreecommitdiff
path: root/helm-dabbrev.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2015-04-23 12:42:51 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2015-04-23 12:42:51 +0200
commit9e6bfb96302a8677fe3380b75a741f2df6c2a643 (patch)
tree21db0a4c90792be568bd88a7dbffc00c6205269c /helm-dabbrev.el
parentdf84654cffdd19643866def141e7a6ae09825f05 (diff)
Fix helm dabbrev regexp (#997).
* helm-dabbrev.el (helm-dabbrev--regexp): Search starting also at dot.
Diffstat (limited to 'helm-dabbrev.el')
-rw-r--r--helm-dabbrev.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/helm-dabbrev.el b/helm-dabbrev.el
index d9cb2872..d71f9a70 100644
--- a/helm-dabbrev.el
+++ b/helm-dabbrev.el
@@ -106,7 +106,7 @@ but the initial search for all candidates in buffer(s)."
(defvar helm-dabbrev--exclude-current-buffer-flag nil)
(defvar helm-dabbrev--cache nil)
(defvar helm-dabbrev--data nil)
-(defvar helm-dabbrev--regexp "\\s-\\|\t\\|[(\[\{\"'`=<$;]\\|\\s\\\\|^")
+(defvar helm-dabbrev--regexp "\\s-\\|\t\\|[(\[\{\"'`=<$;]\\|\\s\\\\|^\\|\\.")
(cl-defstruct helm-dabbrev-info dabbrev limits iterator)