X-Git-Url: https://git.distorted.org.uk/~mdw/profile/blobdiff_plain/0d86e01634ab2a612cfc52b82dcdd99079c59a26..6dac28f9ffde3e00d1b5a05e5f5c2d6d529cf736:/dot/emacs diff --git a/dot/emacs b/dot/emacs index 79d7438..79220bd 100644 --- a/dot/emacs +++ b/dot/emacs @@ -373,7 +373,8 @@ (setq find-ls-option ;Build file lists efficiently '("-print0 | xargs -0r ls -ld" . "ld")) (setq bookmark-save-flag 0) ;Save bookmarks automatically -(setq vc-follow-symlinks t) +(setq vc-follow-symlinks t + vc-git-resolve-conflicts nil) (setq x-gtk-file-dialog-help-text nil) (setq use-dialog-box nil) (setq Info-fontify-maximum-menu-size 100000) @@ -579,9 +580,12 @@ ;; Default frame size. (setq frame-background-mode (if mdw-black-background 'dark 'light) + frame-inhibit-implied-resize t default-frame-alist `((width . ,(+ mdw-column-width - (if (>= emacs-major-version 21) 0 1))) + (cond ((<= emacs-major-version 20) 1) + ((= emacs-major-version 26) 3) + (t 0)))) (height . 33) (vertical-scroll-bars . right) (cursor-type . bar) @@ -623,19 +627,28 @@ (require 'ido-completing-read+) (unless (fboundp 'ido-ubiquitous-mode) (require 'ido-ubiquitous)) (ido-ubiquitous-mode 1) - (setq ido-cr+-max-items nil - ido-ubiquitous-command-overrides - (append ido-ubiquitous-command-overrides - `((enable-old regexp ,(concat "\\`" - "gtags-find-" - "\\(" "tag" - "\\|file" - "\\|rtag" - "\\|symbol" - "\\)" - "\\(" "\\|-other-window" - "\\)" - "\\'"))))) + (setq ido-cr+-max-items nil) + (let ((excludes `(,(concat "\\`" + "gtags-find-" + "\\(" "tag" + "\\|file" + "\\|rtag" + "\\|symbol" + "\\)" + "\\(" "\\|-other-window" + "\\)" + "\\'")))) + (if (boundp 'ido-ubiquitous-command-overrides) + (setq ido-ubiquitous-command-overrides + (append ido-ubiquitous-command-overrides + (mapcar (lambda (exclude) + (if (symbolp exclude) + `(enable-old exact + ,(symbol-name exclude)) + `(enable-old regexp ,exclude))) + excludes))) + (setq ido-cr+-function-blacklist + (append ido-cr+-function-blacklist excludes)))) (setq magit-completing-read-function 'magit-ido-completing-read) (require 'smex) (smex-initialize) (global-set-key [?\M-x] 'smex))