On 21Sep2015 14:36, Ben Boeckel <maths...@gmail.com> wrote:
On Mon, Sep 21, 2015 at 12:32:02 -0500, David Champion wrote:
set my_wait_key=$wait_key
unset wait_key
set wait_key=$my_wait_key
Well, that looks nasty, but it works:
macro generic \Cy \
":set my_wait_key = $wait_key<return>:unset wait_key<return><shell-escape>killall -USR1
offlineimap<enter>:set wait_key = $my_wait_key<return>:unset my_wait_key<return>" \
"kick offlineimap"
I have macros like this. It is nasty, at least when expressed in precisely this
way.
Jon LaBadie and David Champion's suggestion of having a pair of macros to save
the current config state and restore it (by stuffing the value of $foo into
$my_foo for various $foo) is probably the generic way to go there.
So you might have ",y" mapped to a macro to save various settings (i.e. save
everything that any of your macros fiddle with) and ",Y" mapped to pull the
values back from $my_foo et al into the settings again.
Then put ",y" at the start of your macros and ",Y" at the end.
I still think some command or function to do this would help a lot.
Wrapping all functions like this is…tedious to say the least. It also
makes reading these things annoying since the meat of the binding is
buried 65 characters into the line.
I think about this issue frequently. My preferred general approach would be
some kind of stack of settings: "push settings", do work, "pop settings". And
possibly "push particular setting(s)".
There are three trickinesses that spring to mind: (a) defining the "end of work
point", (b) making the "pop settings" operation run even when something in the
middle of your macro fails and (c) what about when you want your macro to
change one setting by hack-and-preserve the rest of them. You'd need some kind
of "set value in the outer set" or "set value in some global set" or something.
Issue (c) would be nasty to define - one can imagine wanting all sorts of
variations depending on circumstances.
Cheers,
Cameron Simpson <c...@zip.com.au>