Re: [Pharo-users] Shortcuts for navigation history in Pharo5
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-fix cheers -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 <pharo-users@lists.pharo.org> wrote:
---------- Forwarded message ---------- From: Davide Varvello <varvello@yahoo.com> To: pharo-users@lists.pharo.org 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-tp4906689p4... Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
Hi ben It is better to copy the fix in both repositories. Stef Le 18/7/16 à 11:53, Ben Coman a écrit :
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-fix
cheers -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 <pharo-users@lists.pharo.org> wrote:
---------- Forwarded message ---------- From: Davide Varvello <varvello@yahoo.com> To: pharo-users@lists.pharo.org 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-tp4906689p4... Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
participants (2)
-
Ben Coman -
stepharo