Guest User

Untitled

a guest
May 25th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. ;; Keep annoying buffers out of my face
  2. (defun ido-stupid-buffers-to-end ()
  3. (let ((stoo-pid (delq nil (mapcar
  4. (lambda (x)
  5. (if (and (not (equal x (buffer-name (current-buffer))))
  6. (string-match
  7. (rx (or "*Completions*"
  8. "*Shell Command Output*"
  9. "*vc-diff*")) x))
  10. x))
  11. ido-temp-list))))
  12. (ido-to-end stoo-pid)))
Add Comment
Please, Sign In to add comment