adding '.' for completion start point.

This commit is contained in:
Kazu Yamamoto 2010-06-14 10:57:43 +09:00
parent 60852b6980
commit da8975c03f
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@
(defun ghc-completion-start-point ()
(save-excursion
(let ((beg (save-excursion (beginning-of-line) (point))))
(if (re-search-backward "[ (,`]" beg t)
(if (re-search-backward "[ (.,`]" beg t)
(1+ (point))
beg))))