summaryrefslogtreecommitdiff
path: root/.emacs.d/init.el
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r--.emacs.d/init.el14
1 files changed, 0 insertions, 14 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index f1f480e6..da5e41ca 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -394,10 +394,8 @@ windows side-by-side in the frame."
'(shell-command-prompt-show-cwd t)
'(show-paren-when-point-in-periphery t nil nil "Useful for C-M-d.")
'(shr-max-width 78)
- '(tab-always-indent 'complete nil nil "M-TAB not consistently available to Emacs.")
'(tab-bar-history-mode t)
'(tab-bar-show 1)
- '(tab-first-completion 'eol)
'(tramp-use-ssh-controlmaster-options nil nil nil "Rely on my ~/.ssh/config.")
'(tramp-verbose 1 nil nil "Manual says this should improve performance.")
'(transient-cycles-buffer-siblings-mode t)
@@ -1176,18 +1174,6 @@ To be used only when it seems to be necessary."
(interactive)
(kill-region (minibuffer-prompt-end) (point-max))))
-;; Default binding for this function, M-TAB, may not be available to Emacs
-;; as it is commonly used by window managers etc., and this is very useful
-;; when renaming files. Also, when typing a path to a remote file on a host
-;; we're not connected to use, this can be used to cause TRAMP to open a
-;; connection and thereby get filename completion going, though it is
-;; smoother to start by using C-x d to connect to the host and only then
-;; using C-x C-f.
-;;
-;; M-j is a better key to rebind than C-j because in C-M-j is bound to the
-;; same thing as M-j in the default global map
-(define-key icomplete-fido-mode-map [?\M-j] #'icomplete-force-complete)
-
;; Preserve some standard bindings for editing text in the minibuffer.
(define-key icomplete-minibuffer-map [?\C-j] nil)
(define-key icomplete-fido-mode-map [?\C-r] nil)