help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: Input-method documentation - where?


From: Kevin Rodgers
Subject: Re: Input-method documentation - where?
Date: Wed, 11 Dec 2002 07:58:34 -0700
User-agent: Mozilla/5.0 (X11; U; SunOS i86pc; en-US; rv:0.9.4.1) Gecko/20020406 Netscape6/6.2.2

David Lee Lambert wrote:

Alternately,  could someone give hints on how to write a short LISP
function that binds to a key and inserts a fixed string at the point?
Working one-line code would be most useful.


(defun insert-fixed-string ()
  "Insert \"fixed string\" at point."
  (interactive)
  (insert "fixed string"))

(global-set-key [f9] 'insert-fixed-string)

--
<a href="mailto:&lt;kevin.rodgers&#64;ihs.com&gt;";>Kevin Rodgers</a>


reply via email to

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