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

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

Re: inserting comment headings


From: Kevin Rodgers
Subject: Re: inserting comment headings
Date: Mon, 19 Jan 2004 15:38:33 -0700
User-agent: Mozilla/5.0 (X11; U; SunOS i86pc; en-US; rv:0.9.4.1) Gecko/20020406 Netscape6/6.2.2

Patrick Drechsler wrote:

Tim X. wrote on 19 Jan 2004 09:35:45 MET:


"leo" == leo  <halloleo@noospaam.myrealbox.com> writes:


[...M-;, M-j...]

Thanks for the answers, I already use these commands
frequently. But this is not quit what I was looking for.

I wanted to include the `-----------------' stuff after the
comment automatically:

;;* comment -----------------------------------------------
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Any ideas?


(defun insert-comment-heading (comment)
 "Insert COMMENT, preceded by \";;* \" and followed by \" ---...\"."
 (interactive "sComment: ")
 (insert ";;* " comment " " (make-string (- (window-width)
                                            (+ (length comment) 5)
                                            1)
                                         ?-))
 (newline))

--
Kevin Rodgers



reply via email to

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