From 6b3d011491bf03033f5e008792d82bc32b1976ea Mon Sep 17 00:00:00 2001 From: William Carroll Date: Tue, 6 Jun 2017 11:14:30 -0400 Subject: [PATCH] Adds CTRL_T fuzzy find helm source for files --- configs/.emacs | 1 + emacs/wc-helper-functions.lisp | 42 ++++++++++++++++++++++++++++++++-- 2 files changed, 41 insertions(+), 2 deletions(-) diff --git a/configs/.emacs b/configs/.emacs index d1e055c59..f3c78bbd3 100644 --- a/configs/.emacs +++ b/configs/.emacs @@ -244,6 +244,7 @@ ("C-l" . evil-window-right) ("C-k" . evil-window-up) ("C-j" . evil-window-down) + ("C-c" . term-interrupt-subjob) :map evil-normal-state-map ("" . nil) diff --git a/emacs/wc-helper-functions.lisp b/emacs/wc-helper-functions.lisp index 7b0704d67..1d81115e3 100644 --- a/emacs/wc-helper-functions.lisp +++ b/emacs/wc-helper-functions.lisp @@ -76,6 +76,15 @@ :buffer "*helm shell history*")) +(defun wc/helm-ctrl-t-find-files () + "Fuzzily searches files within a directory." + (interactive) + (helm :sources (helm-build-in-buffer-source "test1" + :data (shell-command-to-string "ag --hidden --ignore .git -l -g \"\"") + :action 'term-send-raw-string) + :buffer "*helm CTRL_T find files *")) + + (defun wc/exec-cmd (cmd) (term-send-raw-string (format "%s\n" cmd))) @@ -110,9 +119,9 @@ (local-set-key (kbd "C-j") 'evil-window-down) (wc/expose-global-binding-in-term (kbd "M-x")) (evil-define-key 'normal term-raw-map - (kbd "C-c") 'term-interrupt-subjob (kbd "i") 'wc/focus-term-at-bottom) (define-key term-raw-map (kbd "C-r") 'wc/helm-shell-history) + (define-key term-raw-map (kbd "C-t") 'wc/helm-ctrl-t-find-files) (define-key term-raw-map (kbd "M-:") 'eval-expression) (define-key term-raw-map (kbd "M-j") 'wc/helm-autojump) (define-key term-raw-map (kbd "s-v") 'term-paste)) @@ -140,10 +149,39 @@ (evil-window-down 1)) +(defun wc/file-buffer-p (buffer-candidate) + "Returns t if the buffer argument is backed by a file and is therefore presumably a code buffer." + (interactive) + (let ((buff-name (buffer-name buffer-candidate)) + (buff-mode (wc/buffer-major-mode buffer-candidate))) + (not (or (string-match-p "^\*.+\*$" buff-name) + (string-match-p "^dired-mode$" buff-mode))))) + + +(defun wc/buffer-major-mode (buffer-handle) + "Returns a symbol representing the buffer's active major-mode" + (interactive) + (symbol-name (with-current-buffer buffer-handle major-mode))) + + (defun wc/switch-to-mru-buffer () "Switches to the most recently used buffer, including visible buffers." (interactive) - (switch-to-buffer (other-buffer (current-buffer) t (selected-frame)))) + (setq current-buffer-name (buffer-name (current-buffer))) + (setq buffer-candidates (remove-if #'(lambda (buffer) (string-match-p current-buffer-name (buffer-name buffer))) (buffer-list))) + (wc/do-switch-to-mru-buffer buffer-candidates)) + + +(defun wc/do-switch-to-mru-buffer (buffer-candidates) + (setq buffer-candidate (car buffer-candidates)) + (setq rest (cdr buffer-candidates)) + (if (string-match-p current-buffer-name (buffer-name buffer-candidate)) + (wc/do-switch-to-mru-buffer rest) + (if (eq 0 (list-length buffer-candidates)) + (message "No more buffer candidates.") + (if (wc/file-buffer-p buffer-candidate) + (switch-to-buffer buffer-candidate) + (wc/do-switch-to-mru-buffer rest))))) (defun *-popwin-help-mode-off ()