summaryrefslogtreecommitdiff
path: root/helm-source.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2015-08-20 17:59:00 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2015-08-20 17:59:00 +0200
commitb26db373b005f237efde253616c4db585eca1fd1 (patch)
tree9871668f57771388d9a14cb144d521d30b73ff6c /helm-source.el
parent28882f5e4596936e622d3094a5d644c49aef7cce (diff)
Rename helm-match-plugin.el to helm-multi-match.el.
Rename also all functions prefixed with helm-mp to helm-mm.
Diffstat (limited to 'helm-source.el')
-rw-r--r--helm-source.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/helm-source.el b/helm-source.el
index 17b3126c..beedd446 100644
--- a/helm-source.el
+++ b/helm-source.el
@@ -643,7 +643,7 @@ inherit from `helm-source'.")
this function should returns in such case a cons cell of two integers defining
the beg and end positions to match in the line previously matched by
`re-search-forward' or similar, and move point to next line
- (See how the `helm-mp-3-search-base' and `helm-fuzzy-search' functions are working).
+ (See how the `helm-mm-3-search-base' and `helm-fuzzy-search' functions are working).
NOTE: FUZZY-MATCH slot will overhide value of this slot.")
@@ -742,12 +742,12 @@ Arguments ARGS are keyword value pairs as defined in CLASS."
(helm--setup-source source)
(helm--create-source source)))
-(defvar helm-mp-default-search-functions)
-(defvar helm-mp-default-match-functions)
+(defvar helm-mm-default-search-functions)
+(defvar helm-mm-default-match-functions)
(defun helm-source-mp-get-search-or-match-fns (source method)
(let ((searchers (and (eq method 'search)
- helm-mp-default-search-functions))
+ helm-mm-default-search-functions))
(defmatch (helm-aif (slot-value source 'match)
(helm-mklist it)))
(defmatch-strict (helm-aif (and (eq method 'match)
@@ -762,8 +762,8 @@ Arguments ARGS are keyword value pairs as defined in CLASS."
(cl-case method
(match (cond (defmatch-strict)
(defmatch
- (append helm-mp-default-match-functions defmatch))
- (t helm-mp-default-match-functions)))
+ (append helm-mm-default-match-functions defmatch))
+ (t helm-mm-default-match-functions)))
(search (cond (defsearch-strict)
(defsearch
(append searchers defsearch))