From f0a5a4d3283458a4711687902bbac07d9d32926f Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 24 Oct 2016 13:29:32 -0700 Subject: [PATCH] [Emacs] Move helm-zsh-history to Functions heading --- dotfiles/emacs.d/README.org | 72 ++++++++++++++++++------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index 1d6cae5a..6ab4c7d4 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -797,6 +797,42 @@ A macro for composing functions together to build an interactive command to copy (when (executable-find "copyq") (run-with-idle-timer 10 nil 'imalison:copyq-sync)) #+END_SRC +** helm-zsh-history +This was stolen from https://github.com/jwiegley/dot-emacs +#+BEGIN_SRC emacs-lisp +(defvar helm-c-source-zsh-history + '((name . "Zsh History") + (candidates . helm-c-zsh-history-set-candidates) + (action . (("Execute Command" . helm-c-zsh-history-action))) + (volatile) + (requires-pattern . 3) + (delayed))) + +(defun helm-c-zsh-history-set-candidates (&optional request-prefix) + (let ((pattern (replace-regexp-in-string + " " ".*" + (or (and request-prefix + (concat request-prefix + " " helm-pattern)) + helm-pattern)))) + (with-current-buffer (find-file-noselect "~/.zsh_history" t t) + (auto-revert-mode -1) + (goto-char (point-max)) + (loop for pos = (re-search-backward pattern nil t) + while pos + collect (replace-regexp-in-string + "\\`:.+?;" "" + (buffer-substring (line-beginning-position) + (line-end-position))))))) + +(defun helm-c-zsh-history-action (candidate) + (imalison:named-compile candidate)) + +(defun helm-command-from-zsh () + (interactive) + (require 'helm) + (helm-other-buffer 'helm-c-source-zsh-history "*helm zsh history*")) +#+END_SRC ** Other The stuff in this section is pretty crusty. I don't think its used anywhere, but I keep it around just in case I need it. @@ -1617,42 +1653,6 @@ I use helm for almost all emacs completion (use-package jump-char :bind (("C-;" . jump-char-forward))) #+END_SRC -*** helm-zsh-history -This was stolen from https://github.com/jwiegley/dot-emacs -#+BEGIN_SRC emacs-lisp -(defvar helm-c-source-zsh-history - '((name . "Zsh History") - (candidates . helm-c-zsh-history-set-candidates) - (action . (("Execute Command" . helm-c-zsh-history-action))) - (volatile) - (requires-pattern . 3) - (delayed))) - -(defun helm-c-zsh-history-set-candidates (&optional request-prefix) - (let ((pattern (replace-regexp-in-string - " " ".*" - (or (and request-prefix - (concat request-prefix - " " helm-pattern)) - helm-pattern)))) - (with-current-buffer (find-file-noselect "~/.zsh_history" t t) - (auto-revert-mode -1) - (goto-char (point-max)) - (loop for pos = (re-search-backward pattern nil t) - while pos - collect (replace-regexp-in-string - "\\`:.+?;" "" - (buffer-substring (line-beginning-position) - (line-end-position))))))) - -(defun helm-c-zsh-history-action (candidate) - (imalison:named-compile candidate)) - -(defun helm-command-from-zsh () - (interactive) - (require 'helm) - (helm-other-buffer 'helm-c-source-zsh-history "*helm zsh history*")) -#+END_SRC ** flimenu #+BEGIN_SRC emacs-lisp (imalison:use-package flimenu