emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Emacs attach an action to any key pressed


From: Ivanov Dmitry
Subject: Emacs attach an action to any key pressed
Date: Wed, 5 Jun 2013 09:26:02 +0400

Suppose, I have the code:

(defun dummy ()
      (interactive)
      (message "aaa"))

(local-set-key (kbd "<left>") 'dummy)

When you click <left> key in the current buffer, it will print "aaa".

Is it possible to attach this action to any key pressed?

I looked into "Format of Keymaps" and "Searching Keymaps" in Emacs info pages, but found no code examples.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]