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

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

visual studio code - How can I configure Ctrl+PgUp and Ctrl+PgDown keybindings in vscode navigate to the top/bottom of the view instead of switching tabs?

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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"
    }
}    

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...