mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 16:51:06 -07:00
* lisp/loadup.el: Preload "uniquify".
* lisp/uniquify.el (uniquify-buffer-name-style): Change default. * src/lisp.mk (lisp): Add uniquify.elc.
This commit is contained in:
parent
a82537763d
commit
4e36a6a6e2
6 changed files with 10 additions and 2 deletions
2
etc/NEWS
2
etc/NEWS
|
|
@ -205,6 +205,8 @@ Czech typography rules. To globally enable this feature, evaluate:
|
|||
|
||||
** `electric-indent-mode' is enabled by default.
|
||||
|
||||
** Uniquify is enabled by default.
|
||||
|
||||
** Command `rectangle-mark-mode' bound to C-x SPC makes a rectangular region.
|
||||
Most commands are still unaware of it, but kill/yank do work on the rectangle.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,9 @@
|
|||
2013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* uniquify.el (uniquify-buffer-name-style): Change default.
|
||||
|
||||
* loadup.el: Preload "uniquify".
|
||||
|
||||
* time.el (display-time-update): Update all mode lines (bug#15999).
|
||||
|
||||
* electric.el (electric-indent-mode): Enable by default.
|
||||
|
|
|
|||
|
|
@ -280,6 +280,7 @@
|
|||
|
||||
(load "vc/vc-hooks")
|
||||
(load "vc/ediff-hook")
|
||||
(load "uniquify")
|
||||
(load "electric")
|
||||
(if (not (eq system-type 'ms-dos)) (load "tooltip"))
|
||||
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@
|
|||
:group 'files)
|
||||
|
||||
|
||||
(defcustom uniquify-buffer-name-style nil
|
||||
(defcustom uniquify-buffer-name-style 'post-forward
|
||||
"If non-nil, buffer names are uniquified with parts of directory name.
|
||||
The value determines the buffer name style and is one of `forward',
|
||||
`reverse', `post-forward', or `post-forward-angle-brackets'.
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
(redisplay_internal): Use it (bug#15999).
|
||||
(prepare_menu_bars, redisplay_window): Use it as well.
|
||||
|
||||
* lisp.mk (lisp): Add electric.elc.
|
||||
* lisp.mk (lisp): Add electric.elc and uniquify.elc.
|
||||
|
||||
2013-11-29 Tom Seddon <emacs@tomseddon.plus.com> (tiny change)
|
||||
|
||||
|
|
|
|||
|
|
@ -165,6 +165,7 @@ lisp = \
|
|||
$(lispsource)/vc/vc-hooks.elc \
|
||||
$(lispsource)/vc/ediff-hook.elc \
|
||||
$(lispsource)/electric.elc \
|
||||
$(lispsource)/uniquify.elc \
|
||||
$(lispsource)/tooltip.elc
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue