Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature Request: Close Group Shortcut #274

Closed
rgvcorley opened this issue Apr 15, 2012 · 5 comments
Closed

Feature Request: Close Group Shortcut #274

rgvcorley opened this issue Apr 15, 2012 · 5 comments

Comments

@rgvcorley
Copy link

Apologies if this is not the place to submit a feature request!

I would like to be able to close a tab and all of it's children with a simple Ctrl + click (on x icon) or Shift or something.

At the moment it requires a right click

@piroor
Copy link
Owner

piroor commented Apr 17, 2012

I have no plan to implement custom keyboard shortcuts by TST. Instead, you can add shortcuts via KeySnail or other addons which provide customizability of shortcuts. To close the current tree, you should use following code for the new shortcut:

gBrowser.treeStyleTab.removeTabSubtree(gBrowser.selectedTab);

@piroor
Copy link
Owner

piroor commented Apr 17, 2012

Or, another way, you can close all tabs in the tree when you click the close box of the parent tab with collapsed children. (In other words, to close the tree, you have to collapse the tree at first, and close the tab, then all children are closed too.)

@FichteFoll
Copy link

Sadly, KeySnail does not exactly what I and @rgvcorley want. I described it in the issue referenced above.

@piroor
Copy link
Owner

piroor commented Feb 12, 2016

Firefox already have very large number of keyboard shortcuts, and other addons also provide their own keyboard shortcuts, I cannot find out safe combinations for my features. So I gave up and decided to provide only APIs for other addons. Please use generic addons to customize keyboard shortcuts which can define custom actions based on scripts. Sorry.

@FichteFoll
Copy link

Actually, this wouldn't be a stand-alone key binding but a mouse event combined with a keyboard modifier key. You can control that, can't you?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants