Skip to content

Commit

Permalink
Use migemo in helm-highlight-current-line (#1175).
Browse files Browse the repository at this point in the history
* helm-utils.el (helm-highlight-current-line): Do it.
  • Loading branch information
thierryvolpiatto committed Sep 25, 2015
1 parent 5888932 commit 9659305
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion helm-utils.el
Expand Up @@ -483,7 +483,9 @@ If STRING is non--nil return instead a space separated string."
do (save-excursion
(goto-char start-match)
(while (condition-case _err
(re-search-forward r end-match t)
(if helm-migemo-mode
(helm-mm-migemo-forward r end-match t)
(re-search-forward r end-match t))
(invalid-regexp nil))
(let ((s (match-beginning 0))
(e (match-end 0)))
Expand Down

0 comments on commit 9659305

Please sign in to comment.