Posted by
Ben Coman on
Jul 18, 2016; 9:11am
URL: https://forum.world.st/Shortcuts-for-navigation-history-in-Pharo5-tp4906689p4906891.html
Thanks Davide. If its not too much trouble and you'd like to learn a
bit more about the contribution process, could you submit your fix
following the instructions at [1]. Create two issues, one with
Milestone=Pharo5, and a subcase with Milestone=Pharo6. Policy is for
fixes to be integrated to Pharo 6 first, then back ported to Pharo5.
[1]
http://pharo.org/contribute-propose-fixcheers -ben
P.S. @admins, should [1] be updated from Pharo50Inbox to Pharo60Inbox ?
On Mon, Jul 18, 2016 at 4:15 PM, Davide Varvello via Pharo-users
<
[hidden email]> wrote:
>
>
> ---------- Forwarded message ----------
> From: Davide Varvello <
[hidden email]>
> To:
[hidden email]
> Cc:
> Date: Mon, 18 Jul 2016 00:31:32 -0700 (PDT)
> Subject: Re: Shortcuts for navigation history in Pharo5
> Hi Stef,
>
> I was wrong, the descriptions exist in the Keymap Browser, but their
> shortcut name are "next" and "previous".
> A better name is #goBackInTheNavigationHistory and
> #goForwardInTheNavigationHistory
>
> so the selector could be
> NautilusUI class>>buildHistoryShortcutsOn: aBuilder
> <keymap>
>
> (aBuilder shortcut: #goBackInTheNavigationHistory)
> category: #NautilusGlobalShortcuts
> default: $[ meta shift
> do: [:target| target previous ]
> description: 'Go back in the navigation history.'.
>
> (aBuilder shortcut: #goForwardInTheNavigationHistory)
> category: #NautilusGlobalShortcuts
> default: $] meta shift
> do: [:target| target next ]
> description: 'Go forward in the navigation history'.
>
>
> Davide
>
>
> stepharo wrote
>> Hi Davide
>>
>> add them to the description and send us a fix.
>>
>> Stef
>
>
>
>
>
> --
> View this message in context:
http://forum.world.st/Shortcuts-for-navigation-history-in-Pharo5-tp4906689p4906871.html> Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
>
>