mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
Change uniquify style
When looking for files named "index.haml" in iBuffer, they used to appear as "foo-bar1/index.haml" and "foo-bar2/index.haml". Makes it hard to find "index.haml". New style is "index.haml | foo-bar1" and "index.haml | foo-bar2".
This commit is contained in:
@@ -47,8 +47,8 @@
|
||||
|
||||
;; meaningful names for buffers with the same name
|
||||
(require 'uniquify)
|
||||
(setq uniquify-buffer-name-style 'forward)
|
||||
(setq uniquify-separator "/")
|
||||
(setq uniquify-buffer-name-style 'post-forward)
|
||||
(setq uniquify-separator " | ")
|
||||
(setq uniquify-after-kill-buffer-p t) ; rename after killing uniquified
|
||||
(setq uniquify-ignore-buffers-re "^\\*") ; don't muck with special buffers
|
||||
|
||||
|
||||
Reference in New Issue
Block a user