summaryrefslogtreecommitdiff
path: root/helm-color.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-color.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-color.el')
-rw-r--r--helm-color.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/helm-color.el b/helm-color.el
index bc3d4148..d87a55ce 100644
--- a/helm-color.el
+++ b/helm-color.el
@@ -80,22 +80,22 @@
(defun helm-color-run-insert-name ()
"Insert name of color from `helm-source-colors'"
(interactive)
- (with-helm-alive-p (helm-quit-and-execute-action 'helm-color-insert-name)))
+ (with-helm-alive-p (helm-exit-and-execute-action 'helm-color-insert-name)))
(defun helm-color-run-kill-name ()
"Kill name of color from `helm-source-colors'"
(interactive)
- (with-helm-alive-p (helm-quit-and-execute-action 'helm-color-kill-name)))
+ (with-helm-alive-p (helm-exit-and-execute-action 'helm-color-kill-name)))
(defun helm-color-run-insert-rgb ()
"Insert RGB of color from `helm-source-colors'"
(interactive)
- (with-helm-alive-p (helm-quit-and-execute-action 'helm-color-insert-rgb)))
+ (with-helm-alive-p (helm-exit-and-execute-action 'helm-color-insert-rgb)))
(defun helm-color-run-kill-rgb ()
"Kill RGB of color from `helm-source-colors'"
(interactive)
- (with-helm-alive-p (helm-quit-and-execute-action 'helm-color-kill-rgb)))
+ (with-helm-alive-p (helm-exit-and-execute-action 'helm-color-kill-rgb)))
(defvar helm-color-map
(let ((map (make-sparse-keymap)))