-
Notifications
You must be signed in to change notification settings - Fork 8.5k
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
Split pane is not working #3877
Comments
For me it only works if I don't use the numpad plus and min keys (which I would prefer) but it does work with the other plus and min keys (near backspace). |
You used the correct key specifier for numbad keys? The following works for me: {
"command": "splitHorizontal",
"keys": [
"alt+shift+numpad_minus"
]
},
{
"command": "splitVertical",
"keys": [
"alt+shift+numpad_plus"
]
} See also here: #3856 |
@Grisu118 Your suggetions work. However, the defaults mentioned in terminal/src/cascadia/TerminalApp/defaults.json Lines 237 to 238 in 9145903
|
@kumarom This is definitely weird. You're saying that {
"command": "splitVertical",
"keys": [ "alt+shift+numpad_plus" ]
} worked for you, but {
"command": "splitVertical",
"keys": [ "ctrl+shift+h" ]
} didn't? That's really weird. What keyboard layout are you using? |
@zadjii-msft All I am saying that
worked. But terminal/src/cascadia/TerminalApp/defaults.json Lines 237 to 238 in 9145903
|
@kumarom okay, I think I got confused by your OP where you mentioned that "CTRL + SHIFT + h" didn't work. What keyboard layout are you using? Does the alt+shift+plus binding work for you if you use the + key that's not on the numpad? On a QWERTY EN-US keyboard, this is the key with both Perhaps we need to update the documentation to be clearer that |
@zadjii-msft I tried below and none of them worked for me. I am using QWERTY EN-US keyboard.
Below works:
|
Oh well this is horrifying. That style of keybindings definitely should be working. Lemme dig in a bit... |
I see what's going on here. #3722 added support for Sorry for any confusion! |
My personal preference was to confiugre it like this:
|
Environment
Steps to reproduce
I have two tabs open (1st cmd, 2nd wsl1 Ubuntu) and I wanted to have split pane. So I focused on wsl1 and then pressed ALT + SHIFT + - or ALT + SHIFT + '+'. But there was no change.
Then I closed all tabs. Changed key bindings ALT + SHIFT + - to CTRL + SHIFT + h after editing profiles.json. Reopened all tabs, and then tried CTRL + SHIFT + h. Still no action.
Expected behavior
As per release notes for v0.7.3291.0, it should have split pane.
Actual behavior
Split pane is not working
The text was updated successfully, but these errors were encountered: