From dd3c75400b084395ca1b6665a030c7635c803990 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Fri, 18 Oct 2013 12:57:10 +0100 Subject: [PATCH] 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". --- appearance.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appearance.el b/appearance.el index b281084..24ce57e 100644 --- a/appearance.el +++ b/appearance.el @@ -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