From 319648f5fb12b631eee3eddec2ff8a6678f51cb5 Mon Sep 17 00:00:00 2001 From: tastytea Date: Mon, 29 Apr 2019 18:39:32 +0200 Subject: [PATCH] Show tabbar timer reduced to 2 seconds. --- init.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.el b/init.el index a926dcf..aa55e5d 100644 --- a/init.el +++ b/init.el @@ -1,5 +1,5 @@ ;;; init.el --- tastytea's Emacs init file. -;; Time-stamp: <2019-04-29T13:22:38+00:00> +;; Time-stamp: <2019-04-29T16:17:54+00:00> ;;; Commentary: ;; I am using this file with Emacs 26, but most of it will probably work with @@ -561,8 +561,8 @@ With argument, do this that many times." (ruler-mode -1) (setq-local tabbar-ruler-ruler-off t))) - ;; Show tabbar after 4 seconds idle. - (run-with-idle-timer 4 t (lambda () (my/show-tabbar))) + ;; Show tabbar after 2 seconds idle. + (run-with-idle-timer 2 t (lambda () (my/show-tabbar))) :bind ("C-" . 'tabbar-ruler-tabbar-backward-tab) ("C-" . 'tabbar-ruler-tabbar-forward-tab)