From 8a57dfc62f8a0ac1fd248718a54d03943d62f2ac Mon Sep 17 00:00:00 2001 From: tastytea Date: Mon, 23 Dec 2019 03:50:56 +0100 Subject: [PATCH] Emacs: Ignore ivy-completion with s-. --- init/basics/ui.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init/basics/ui.el b/init/basics/ui.el index f9b7087..37154fd 100644 --- a/init/basics/ui.el +++ b/init/basics/ui.el @@ -1,6 +1,6 @@ ;;; ui.el --- Configure user interfaces. -*- lexical-binding: t; -*- -;; Time-stamp: <2019-11-24T17:46:41+00:00> +;; Time-stamp: <2019-12-23T00:13:17+00:00> ;;; Commentary: ;; * treemacs @@ -53,6 +53,7 @@ (:map ivy-minibuffer-map ("M-" . ivy-previous-history-element) ("M-" . ivy-next-history-element) + ("S-" . ivy-immediate-done) ; Ignore completion. ) )