* Eric Smith <[EMAIL PROTECTED]> [2002-06-23 15:36]: > How do I quote within a quote more than once? > > A specific example is that I want my default setting for $editor > to be: set editor=" vim -c '/^$/+1' -c 'se tw=65' "
set editor="vim -u setupfile" put all the specific stuff into the "setupfile" then. tw=65 0/^$/+1 > Now I want to define the following macro: > macro pager G ":set editor=vi\n<group-reply><send-message>" > But after executing the <send-message> function it should set > $editor back to the default. macro pager G ":set editor=vi\n<group-reply><send-message> :set editor=editor_default\n" or use a default hook: send-hook . 'set editor="..."' Sven