Hi Guys, On Pharo4 there was 2 shortcuts to go through navigation history: Cmd+[ and Cmd+] Is there something similar in Pharo5? I can't find it. TIA Davide |
Nobody?
Davide
|
In reply to this post by Pharo Smalltalk Users mailing list
Nobody?
Davide Pharo Smalltalk Users mailing list wrote > Hi Guys,On Pharo4 there was 2 shortcuts to go through navigation history: > Cmd+[ and Cmd+]Is there something similar in Pharo5? I can't find it. > TIADavide -- View this message in context: http://forum.world.st/Shortcuts-for-navigation-history-in-Pharo5-tp4906689p4906715.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com. |
2016-07-15 19:21 GMT+02:00 Davide Varvello via Pharo-users <[hidden email]>:
They just changed to $[ meta shift $] meta shift Maybe this shortcuts don't work (for example, on windows with german keyboard layout, you can not type [ + ctrl or alt) You can change them back in NautilusUI class >> buildHistoryShortcutsOn:
|
Thanks Nicolai, it works. On mac is Cmd+Shift+[ or Cmd+Shift+]
I don't know why it is not included in the "Shortcuts description" or in the "Keymap Browser" Cheers Davide
|
In reply to this post by Nicolai Hess-3-2
Thanks Nicolai, it works. On mac is Cmd+Shift+[ or Cmd+Shift+]
I don't know why it is not included in the "Shortcuts description" or in the "Keymap Browser" Cheers Davide Nicolai Hess-3-2 wrote > 2016-07-15 19:21 GMT+02:00 Davide Varvello via Pharo-users < > pharo-users@.pharo >>: > >> >> >> ---------- Weitergeleitete Nachricht ---------- >> From: Davide Varvello < > varvello@ > > >> To: > pharo-users@.pharo >> Cc: >> Date: Fri, 15 Jul 2016 09:37:45 -0700 (PDT) >> Subject: Re: Shortcuts for navigation history in Pharo5 >> Nobody? >> Davide >> > > They just changed to > > $[ meta shift > $] meta shift > > Maybe this shortcuts don't work (for example, on windows with german > keyboard layout, you can not type [ + ctrl or alt) > > You can change them back in > NautilusUI class >> buildHistoryShortcutsOn: > > >> >> >> Pharo Smalltalk Users mailing list wrote >> > Hi Guys,On Pharo4 there was 2 shortcuts to go through navigation >> history: >> > Cmd+[ and Cmd+]Is there something similar in Pharo5? I can't find it. >> > TIADavide >> >> >> >> >> >> -- >> View this message in context: >> http://forum.world.st/Shortcuts-for-navigation-history-in-Pharo5-tp4906689p4906715.html >> Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com. >> >> >> -- View this message in context: http://forum.world.st/Shortcuts-for-navigation-history-in-Pharo5-tp4906689p4906761.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com. |
Hi Davide
add them to the description and send us a fix. Stef |
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
|
In reply to this post by stepharo
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. |
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 <[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. > > |
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 > <[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. >> >> > |
Free forum by Nabble | Edit this page |