Git Product home page Git Product logo

Comments (2)

mkloubert avatar mkloubert commented on May 30, 2024

@haakonstorm

Sorry for the late answer.

No, it is the right place! :-)

I think, I found a solution, which can remap the CMD + W (in Windows: CTRL + W) key bindings:

It is possible to remap any key binding in Visual Studio Code, even the default ones (https://code.visualstudio.com/docs/getstarted/keybindings).

First add the following section to your global settings.json file (https://code.visualstudio.com/docs/getstarted/settings#_settings-file-locations):

{
    "ego.power-tools": {
        "commands": {
            "haakonstorm.closeTab": {
                "script": "closeTab.js"
            }
        }
    }
}

This will register a global command, which executes the script closeTab.js, you should create inside the .vscode-powertools subfolder of your home directory:

exports.execute = async (args) => {
    // s. https://nodejs.org/api/child_process.html
    const child_process = args.require('child_process');
    // s. https://code.visualstudio.com/api/references/vscode-api
    const vscode = args.require('vscode');

    // s. https://nodejs.org/api/child_process.html#child_process_child_process_spawnsync_command_args_options
    const RESULT = child_process.spawnSync('/path/to/your/file/safe-to-close.sh');

    const EXIT_CODE = RESULT.status;
    switch (EXIT_CODE) {
        case 0:
            {
                // close the active editor
                await vscode.commands.executeCommand('workbench.action.closeActiveEditor');
            }
            break;

        default:
            // do something, if failed
            // vscode.window.showErrorMessage('Cannot close tab: ' + EXIT_CODE);
            break;
    }
};

Now remap (or reset) all actions, which are binded to CMD + W (CTRL + W) shortcut, by opening File >> Preferences >> Keyboard Shortcuts (CMD + K CMD + S / CTRL + K CTRL + S).
In most cases it should be the following ones:

image

Then search for the haakonstorm.closeTab command, you defined at the beginning and map it with CMD + W (CTRL + W).

EDIT: The only problem is, that you are still able to close by "x". There is currently no way to cancel a "close tab" event in the API of Visual Studio Code.

from vscode-powertools.

mkloubertego avatar mkloubertego commented on May 30, 2024

@haakonstorm

That version of the extension is no longer supported.

Please backup, uninstall and upgrade to the new location.

from vscode-powertools.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.