Hi, I use Xemacs+slime to edit lisp files.
I want to comment multiple lines to debug different part of the lisp file. Is there any shortcut (or function) to comment/uncomment a selected region(multiple lines) in a lisp file?
Thanks a lot! -Lei
On Sun Feb 25, 2007 at 12:03:44AM -0700, Lei Tang wrote:
Hi, I use Xemacs+slime to edit lisp files.
I want to comment multiple lines to debug different part of the lisp file. Is there any shortcut (or function) to comment/uncomment a selected region(multiple lines) in a lisp file?
Thanks a lot! -Lei
M-; will toggle commenting on and off for a selected block
You can see all the keybindings with C-h b or F1 b
-Jeff
Jeffrey Cunningham wrote:
On Sun Feb 25, 2007 at 12:03:44AM -0700, Lei Tang wrote:
Hi, I use Xemacs+slime to edit lisp files.
I want to comment multiple lines to debug different part of the lisp file. Is there any shortcut (or function) to comment/uncomment a selected region(multiple lines) in a lisp file?
Thanks a lot! -Lei
M-; will toggle commenting on and off for a selected block
You can see all the keybindings with C-h b or F1 b
-Jeff
That's what I want. Thanks a lot!