Sublime Forum

Shift + Alt + down key combination

#1

Two features which are very useful to me in old sublime Text 3 are not working after updated to sublime text 3 build 3114. Please make that to work as like previous version. Really i feel very annoying without these.

Feature 1:
Scroll window by holding Ctrl + down/up arrow.

Feature 2:
Highlighting text of two consecutive lines using Shift+Alt+down/up arrow. (In new version if i use this key combination means ‘Number’ values are incrementing/decrementing 10 values.).

Sorry for my bad english. Please bring this back.

0 Likes

Ctrl+alt+up/down in linux
#2

Works fine for me

never heard of this keybinding - do you mean Selection menu -> Add Previous Line/Add Next Line?

0 Likes

#3

still scroll not working.

and for the second one, yeah u r right. but keyboard shortcut not working.

0 Likes

#4

sorry, didn’t see that alt+shift+up/down is the default keybinding for this on Linux. if you go to the View menu -> Show Console and type:

sublime.log_commands(True)
sublime.log_input(True)

and then try pressing these shortcut keys, what gets displayed in the console?

0 Likes

#5

got it dude. its due to “Emmet” plugin. How do i fix it???

0 Likes

#6

Preferences menu -> Keybindings - User, paste in the default keybindings so that your file would look like this if it was previously empty:

[
    { "keys": ["alt+shift+up"], "command": "select_lines", "args": {"forward": false} },
    { "keys": ["alt+shift+down"], "command": "select_lines", "args": {"forward": true} },
    { "keys": ["ctrl+up"], "command": "scroll_lines", "args": {"amount": 1.0 } },
    { "keys": ["ctrl+down"], "command": "scroll_lines", "args": {"amount": -1.0 } },
]

This works because user keybindings override package keybindings :wink:

1 Like

#7

thanks dude. Working. Great.

0 Likes

#8

Emmet provides a few settings to disable its keybindings.

2 Likes

#9

@FichteFoll thank you. will have a look later.

1 Like

#10

Thanks man.
I was searching for this for sooo loooong.

1 Like