summaryrefslogtreecommitdiff
path: root/helm-elisp-package.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2015-08-15 14:35:22 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2015-08-15 14:35:22 +0200
commite600d43bead4ef61cba58e7e881c8de92692d98d (patch)
treeeb1222ae86a07c237169240cc3d3a4a883d1999e /helm-elisp-package.el
parent03c1f1ae68154718869d7376282edcb06fb47bf3 (diff)
Rename helm-run-after-quit and helm-quit-and-execute-action.
Make these functions obsolete and use their new names prefixed by helm-exit-. * helm-aliases.el (helm-c-quit-and-execute-action): Do it. * helm-bookmark.el (helm-bookmark-run-edit): Do it. (helm-bookmark-run-jump-other-window): Do it. * helm-buffers.el (helm-buffer-run-kill-buffers): Do it. (helm-buffers-run-multi-occur): Do it. * helm-color.el (helm-color-run-insert-name): Do it. * helm-elisp-package.el (helm-el-run-visit-homepage): Do it. (helm-el-run-package-install): Do it. (helm-el-run-package-uninstall): Do it. (helm-el-run-package-upgrade): Do it. (helm-el-run-package-reinstall): Do it. * helm-files.el (helm-ff-query-replace-on-marked): Do it. (helm-ff-query-replace): Do it. (helm-ff-run-switch-to-history): Do it. (helm-ff-run-locate): Do it. (helm-ff-run-insert-org-link): Do it. (helm-ff-run-print-file): Do it. (helm-ff-run-browse-project): Do it. (helm-ff-run-gid): Do it. (helm-ff-run-find-sh-command): Do it. * helm-grep.el (helm-grep-run-default-action): Do it. * helm-mode.el (helm-cr-empty-string): Do it. * helm-regexp.el (helm-moccur-run-goto-line-ow): Do it. (helm-moccur-run-save-buffer): Do it. * helm-tags.el (helm-etags-run-switch-other-window): Do it. (helm-etags-run-switch-other-frame): Do it. * helm-utils.el (helm-quit-and-find-file): Do it. (helm-exit-and-execute-action): Do it. * helm.el (helm-run-after-exit): Do it. (helm-resume-previous-session-after-quit): Do it. (helm-enable-or-switch-to-debug): Do it. (helm-kill-selection-and-quit): Do it.
Diffstat (limited to 'helm-elisp-package.el')
-rw-r--r--helm-elisp-package.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/helm-elisp-package.el b/helm-elisp-package.el
index cc988639..04738b4f 100644
--- a/helm-elisp-package.el
+++ b/helm-elisp-package.el
@@ -89,7 +89,7 @@
(defun helm-el-run-visit-homepage ()
(interactive)
(with-helm-alive-p
- (helm-quit-and-execute-action 'helm-el-package-visit-homepage)))
+ (helm-exit-and-execute-action 'helm-el-package-visit-homepage)))
(defun helm-el-package-install-1 (pkg-list)
(cl-loop with mkd = pkg-list
@@ -124,7 +124,7 @@
(defun helm-el-run-package-install ()
(interactive)
(with-helm-alive-p
- (helm-quit-and-execute-action 'helm-el-package-install)))
+ (helm-exit-and-execute-action 'helm-el-package-install)))
(defun helm-el-package-uninstall-1 (pkg-list)
(cl-loop with mkd = pkg-list
@@ -172,7 +172,7 @@
(defun helm-el-run-package-uninstall ()
(interactive)
(with-helm-alive-p
- (helm-quit-and-execute-action 'helm-el-package-uninstall)))
+ (helm-exit-and-execute-action 'helm-el-package-uninstall)))
(defun helm-el-package-menu--find-upgrades ()
(cl-loop for entry in helm-el-package--tabulated-list
@@ -222,7 +222,7 @@
(defun helm-el-run-package-upgrade ()
(interactive)
(with-helm-alive-p
- (helm-quit-and-execute-action 'helm-el-package-upgrade)))
+ (helm-exit-and-execute-action 'helm-el-package-upgrade)))
(defun helm-el-package-upgrade-all ()
(if helm-el-package--upgrades
@@ -239,7 +239,7 @@
(defun helm-el-run-package-upgrade-all ()
(interactive)
(with-helm-alive-p
- (helm-quit-and-execute-action 'helm-el-package-upgrade-all-action)))
+ (helm-exit-and-execute-action 'helm-el-package-upgrade-all-action)))
(defun helm-el-package--transformer (candidates _source)
(cl-loop for c in candidates
@@ -354,7 +354,7 @@
(defun helm-el-run-package-reinstall ()
(interactive)
(with-helm-alive-p
- (helm-quit-and-execute-action 'helm-el-package-reinstall)))
+ (helm-exit-and-execute-action 'helm-el-package-reinstall)))
;;;###autoload
(defun helm-list-elisp-packages (arg)