Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

By default, Ctrl+PageUp and Ctrl+PageDown combinations in Visual Studio Code switch view to the next/previous tab. I would like to reconfigure them so they work like in Visual Studio, so they navigate to the top/bottom of the screen.

I am trying to modify the editor's keybindings (keybindings.json) but I find myself unable to find proper commands.

So far, I have found:

  • cursorTop/cursorBottom - moves cursor to the top/bottom of the whole file
  • scrollLineUp/scrollLineDown - scrolls the view, but does not change cursor's position
  • scrollPageDown/scrollPageUp - moves the view one page down/up, but does not change the cursor's position

I have tried Visual Studio Keymap (https://marketplace.visualstudio.com/items?itemName=ms-vscode.vs-keybindings) extension, but it also does not provide the required functionality.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

Of course, almost immediately after posting a question I've stumbled upon a solution. This issue comments (https://github.com/Microsoft/vscode/issues/15058) gave me a hint, so I tried cursorMove command with "to": "viewPortTop" and "to": "viewPortBottom" arguments and, surprisingly, it worked.

The complete json to be added to keybindings.json is:

{
    "key": "ctrl+pageup",

    "command": "cursorMove",
    "when": "editorTextFocus",
    "args": {
        "to": "viewPortTop"
    }
}    ,
{
    "key": "ctrl+pagedown",
    "command": "cursorMove",
    "when": "editorTextFocus",
    "args": {
        "to": "viewPortBottom"
    }
}    

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...