Update
This commit is contained in:
parent
7fbff78544
commit
7205e5a9b8
4 changed files with 5 additions and 9 deletions
|
@ -5,12 +5,6 @@
|
|||
:group 'convenience
|
||||
:prefix 'narf-)
|
||||
|
||||
(defcustom narf-leader-key "," "The prefix for leader keybindings."
|
||||
:group 'narf :type 'string)
|
||||
|
||||
(defcustom narf-localleader-key "\\" "The prefix for localleader keybindings."
|
||||
:group 'narf)
|
||||
|
||||
|
||||
;; Buffers/Files ;;;;;;;;;;;;;;;;;;;;;;;
|
||||
|
||||
|
@ -31,6 +25,7 @@ enable multiple minor modes for the same regexp.")
|
|||
"^\\*eval\\*$"
|
||||
"^\\*Shell Command Output\\*$"
|
||||
"^\\*Async Shell Command\\*$"
|
||||
"^\\*WoMan-Log\\*$"
|
||||
help-mode
|
||||
image-mode
|
||||
dired-mode
|
||||
|
@ -46,7 +41,7 @@ buffer to display.")
|
|||
(defvar narf-ignore-buffers '("*Completions*" "*Compile-Log*" "*inferior-lisp*"
|
||||
"*Fuzzy Completions*" "*Apropos*" "*Help*" "*cvs*"
|
||||
"*Buffer List*" "*Ibuffer*" "*esh command on file*"
|
||||
"*helm*")
|
||||
"*helm*" "*WoMan-Log*")
|
||||
"List of buffer names to ignore when using `winner-undo', or `winner-redo'")
|
||||
|
||||
(defvar narf-cleanup-processes-alist '(("pry" . ruby-mode)
|
||||
|
|
|
@ -78,7 +78,7 @@ Inspired from http://demonastery.org/2013/04/emacs-evil-narrow-region/"
|
|||
"Kill all buried, unreal buffers in current frame. See `narf-unreal-buffers'"
|
||||
(interactive)
|
||||
(let* ((real-buffers (narf/get-real-buffers))
|
||||
(kill-list (--filter (not (memq it real-buffers)) narf/get-buried-buffers)))
|
||||
(kill-list (--filter (not (memq it real-buffers)) (narf/get-buried-buffers))))
|
||||
(message "Cleaned up %s buffers" (length kill-list))
|
||||
(mapc 'kill-buffer kill-list)
|
||||
(narf:kill-process-buffers)))
|
||||
|
|
1
private/dict/text-mode
Normal file
1
private/dict/text-mode
Normal file
|
@ -0,0 +1 @@
|
|||
henrik@lissner.net
|
|
@ -1 +1 @@
|
|||
Subproject commit 9ec810841dc96e5312b5b78b1556f6585af02c4f
|
||||
Subproject commit cf8dee6311c600bfc913681b9045ec912288210d
|
Loading…
Add table
Add a link
Reference in a new issue