Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hideojoho/61a0fc9690a152df1ce99d10f9fa9d43 to your computer and use it in GitHub Desktop.
Save hideojoho/61a0fc9690a152df1ce99d10f9fa9d43 to your computer and use it in GitHub Desktop.
How to disable Ctrl+B shortcut in JupyerLab

How to disable Ctrl+B shortcut in JupyerLab

  • Why do we want to do that?
    • Because we want to use tmux in the terminal

How?

  • Top Menu > Settings > Advanced Settings Editor
  • Copy and paste the following snippet
{
    "shortcuts": [
        {
            "command": "application:toggle-left-area",
            "keys": [
                "Accel B"
            ],
            "selector": "body",
            "disabled": true
        },
    ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment