changeset 76:66bf6a7cc434

Add "/" as a search key in info mode
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Thu, 17 Jan 2013 15:57:37 -0500
parents c18f8ce41d1d
children a9f5aa6bc42c
files dotemacs.el
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/dotemacs.el
+++ b/dotemacs.el
@@ -196,7 +196,8 @@
             (local-set-key (kbd "h") 'backward-char)
             (local-set-key (kbd "l") 'forward-char)
             (local-set-key (kbd "j") 'next-line)
-            (local-set-key (kbd "k") 'previous-line)))
+            (local-set-key (kbd "k") 'previous-line)
+            (local-set-key (kbd "/") 'Info-search)))
 
 ;; Something seems to clobber whitespace-mode, this should fix it
 (whitespace-toggle-options 'whitespace-style)