Better Ctrl-W

Closes highlighted tabs. To replace ctrl-w on Windows/Linux for Vim users!

Better Ctrl-W क्या है?

Better Ctrl-W thalesmello द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Closes highlighted tabs. To replace ctrl-w on Windows/Linux for Vim users!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Better Ctrl-W एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        # Better Ctrl-W

Vim users are used to using the `Ctrl-w` key combination for deleting the  last
word when in insert mode. That's no problem for Mac OS users when using
chrome, as the keyboard shortcut for closing a tab is Cmd+w. This is a problem
when using the browser on either Linux or Windows machines, as `Ctrl-w` is the
shortcut for closing a window. So, when editing a text, a Vim user might
accidentally close the current tab by issuing a `Ctrl-w` command, sometimes losing
important text that was being edited.

That annoyance motivated people to discuss solutions on [a StackOverflow thread][1],
in which user [`samson`][2] commented he created [a Chrome extension][3] precisely to:

1. Assign `Ctrl-w` to an extension shortcut that does absolutely nothing
2. Assign a hotkey to close the current tab (I like to use `Alt-w` to mimic Mac OS's `Cmd+w`)

The problem with his extension is that it only works with the currently active tab,
and I regularly use `Shift + Click` to highlight a bunch of tabs, so that I can close them
all at once. His plugin didn't support multiple highlighted tabs, so I created my own.

# Usage

To use this plugin as it's intended, you have to set up the keyboard shortcuts after
installing it. Go to `chrome://extensions/shortcuts` and set the following shortcuts:

1. Assign `Do absolutely nothing` to `Ctrl-w`
2. Assign `Close highlighted tabs` to `Alt-w` or any other key combination of choice

This way, `Ctrl-w` will no longer close the current tab by mistake when editing it,
and you will be able to use `Alt-w` to close either the current of all highlighted tabs.

[1]: https://superuser.com/a/1207752
[2]: https://superuser.com/users/276658/samson
[3]: https://chrome.google.com/webstore/detail/ctrlw/goejokenmdamcapadhgghgpeeaeaaedc?hl=en                    

एक्सटेंशन की मूल जानकारी

नाम Better Ctrl-W Better Ctrl-W
ID jfknaapblnppeflfamkegnnonlfgokhp
आधिकारिक URL https://chromewebstore.google.com/detail/better-ctrl-w/jfknaapblnppeflfamkegnnonlfgokhp
विवरण Closes highlighted tabs. To replace ctrl-w on Windows/Linux for Vim users!
फ़ाइल का आकार 7.07 KB
स्थापना संख्या 1,689
वर्तमान संस्करण 0.1
अंतिम अपडेट 2020-05-03
प्रकाशन तिथि 2020-05-02
रेटिंग 4.00/5 कुल 15 रेटिंग्स
डेवलपर thalesmello
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/thalesmello/better-ctrlw
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "close-highlighted-windows": {
            "description": "Close highlighted tabs"
        },
        "do-nothing": {
            "description": "Do absolutely nothing"
        }
    },
    "description": "Closes highlighted tabs. To replace ctrl-w on Windows\/Linux for Vim users!",
    "icons": {
        "128": "icons\/128.png"
    },
    "manifest_version": 2,
    "name": "Better Ctrl-W",
    "version": "0.1"
}