Browse Source

Add message when mode is enabled or disabled

Ryan C. Thompson 11 years ago
parent
commit
50581590b3
1 changed files with 2 additions and 2 deletions
  1. 2 2
      ido-ubiquitous.el

+ 2 - 2
ido-ubiquitous.el

@@ -167,8 +167,8 @@
   (setq completing-read-function
 	(if ido-ubiquitous-mode
 	    'completing-read-ido
-	  ido-ubiquitous-fallback-completing-read-function)))
-
+	  ido-ubiquitous-fallback-completing-read-function))
+  (message "Ido-ubiquitous mode %s" (if ido-ubiquitous-mode "enabled" "disabled")))
 
 (defcustom ido-ubiquitous-fallback-completing-read-function
   ;; Initialize to the current value of `completing-read-function',