[pedevel] Re: [haiku-3rdparty-dev] Pe Alt+Z to undo in addition to Alt+Y

  • From: scottmc <scottmc2@xxxxxxxxx>
  • To: haiku-3rdparty-dev@xxxxxxxxxxxxx, "pedevel@xxxxxxxxxxxxx" <pedevel@xxxxxxxxxxxxx>
  • Date: Fri, 23 Dec 2011 14:47:35 -0800

Moving this to pedevel as Pe has its own mailing list.
 On Dec 23, 2011 2:23 PM, "John Scipione" <jscipione@xxxxxxxxx> wrote:

> Can we make Alt+Z perform undo in Pe? I am kind of addicted to it. Alt+Y
> is... strange.
>
> Patch below.
>
> It adds a binding for Alt+Z to undo and Alt+Shift+Z to redo. It leaves
> Alt+Y and Alt+Shift+Y also bound to undo and redo.
>
> Thanks,
> John Scipione
>
> Index: Resources/Bindings.r
> ===================================================================
> --- Resources/Bindings.r (revision 600)
> +++ Resources/Bindings.r (working copy)
> @@ -342,7 +342,9 @@
>   Cmd, 0x4d, 0, 0, 'CCUT',
>   Cmd|Shift, 0x4d, 0, 0, msg_CutAppend,
>   Cmd|Shift, 0x2c, 0, 0, msg_Redo,
> - Cmd, 0x2c, 0, 0, msg_Undo
> + Cmd, 0x2c, 0, 0, msg_Undo,
> + Cmd|Shift, 0x4c, 0, 0, msg_Redo,
> + Cmd, 0x4c, 0, 0, msg_Undo
>   }
>  };
>
>
>

Other related posts:

  • » [pedevel] Re: [haiku-3rdparty-dev] Pe Alt+Z to undo in addition to Alt+Y - scottmc