From b5d2f0b0a00264b089e3b784eb436149b8fcd8ff Mon Sep 17 00:00:00 2001 From: "Jaisser J. Sanguino" Date: Sun, 24 May 2026 11:21:02 -0300 Subject: [PATCH] refactor(minibuffer): remove symbol insertion shortcut --- configs/init-minibuffer.el | 6 ------ 1 file changed, 6 deletions(-) diff --git a/configs/init-minibuffer.el b/configs/init-minibuffer.el index c71ab78..5930cb8 100644 --- a/configs/init-minibuffer.el +++ b/configs/init-minibuffer.el @@ -50,12 +50,6 @@ :map minibuffer-local-map ("" . minibuffer-keyboard-quit) ;; Cacelar minibuffer con escape (más rápido que C-g) ("C-" . newline) ;; Insertar nueva línea estando en el minibufer (Mas rápido que C-q C-j) - ("C-S-s" . (lambda () - "Insert the current symbol." - (interactive) - (insert (save-excursion - (set-buffer (window-buffer (minibuffer-selected-window))) - (or (thing-at-point 'symbol t) ""))))) ;; Al presionar por segunda ves C-s busca el símbolo actual. ) ;; Enable automatic preview at point in the *Completions* buffer. This is