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