Next Tab keyboard shortcut

Discussion related to "Everything" 1.5.
Post Reply
w64bit
Posts: 338
Joined: Wed Jan 09, 2013 9:06 am

Next Tab keyboard shortcut

Post by w64bit »

I assigned Ctrl+Right to Next Tab.
When using the key and reaching the last tab, it's not stopping there, but it's starting to first, in a loop.
Is there any setting to do in order that the keyboard shortcut to stop at the last tab?
void
Developer
Posts: 19870
Joined: Fri Oct 16, 2009 11:31 pm

Re: Next Tab keyboard shortcut

Post by void »

There's no option to prevent Everything from cycling pass the start/end of the tabs.

I will consider such an option.
Thank you for the suggestion.

To set Everything to select the first tab:
  • In Everything, from the Tools menu, click Options.
  • Click the Keyboard tab on the left.
  • To the right of Show commands containing, search for:
    tabs
  • Select: File | Select Tab 1
  • Click Add....
  • Press a new keyboard shortcut (for example: Ctrl + 1) and click OK.
  • Click OK.
I will add a select last tab keyboard command.
void
Developer
Posts: 19870
Joined: Fri Oct 16, 2009 11:31 pm

Re: Next Tab keyboard shortcut

Post by void »

Everything 1.5.0.1412b adds some new UI_IDs:

Code: Select all

#define UI_ID_FILE_LAST_TAB			40417
#define UI_ID_FILE_NEXT_TAB_NO_WRAP		40418
#define UI_ID_FILE_PREV_TAB_NO_WRAP		40419


To set a keyboard shortcut to select the last tab:
  • In Everything 1.5, from the Bookmarks menu, click Add to Bookmarks....
  • Change the Name to:
    Select Last Tab
  • Change the Search to:
    /command 40417
  • Set a keyboard shortcut (for example: Ctrl + 9)
  • Click OK.


To set a keyboard shortcut to select the next tab without wrapping:
  • In Everything 1.5, from the Bookmarks menu, click Add to Bookmarks....
  • Change the Name to:
    Select Next Tab No Wrap
  • Change the Search to:
    /command 40418
  • Set a keyboard shortcut (for example: Ctrl + Right)
  • Click OK.


To set a keyboard shortcut to select the previous tab without wrapping:
  • In Everything 1.5, from the Bookmarks menu, click Add to Bookmarks....
  • Change the Name to:
    Select Prev Tab No Wrap
  • Change the Search to:
    /command 40419
  • Set a keyboard shortcut (for example: Ctrl + Left)
  • Click OK.


I'll add these IDs to the keyboard commands in a future version of Everything.
Post Reply