Vscode: Can't select recently visited file using arrow keys

Created on 9 Apr 2020  ·  10Comments  ·  Source: microsoft/vscode




  • VSCode Version: 1.44.0
  • OS Version: Windows 10 Pro 1809

Steps to Reproduce:

  1. Open some files in project/folder
  2. Press Ctrl+Tab
  3. Try to move around displayed list with arrow keys (↑, ↓)
  4. See opened list scrolling instead of moving selection of file


Does this issue occur when all extensions are disabled?: Yes/No
Yes

bug candidate quick-pick verified

Most helpful comment

As a workaround you can configure these keybindings:

{
    "key": "ctrl+up",
    "command": "list.focusUp",
    "when": "listFocus && !inputFocus && inQuickOpen"
},
{
    "key": "ctrl+down",
    "command": "list.focusDown",
    "when": "listFocus && !inputFocus && inQuickOpen"
}

All 10 comments

In Azure Data Studio shipped with VS Code version 1.42.0 everything fine

I get this too. It's pretty painful.

We will try to get a fix into our recovery, thanks for noting.

As a workaround you can configure these keybindings:

{
    "key": "ctrl+up",
    "command": "list.focusUp",
    "when": "listFocus && !inputFocus && inQuickOpen"
},
{
    "key": "ctrl+down",
    "command": "list.focusDown",
    "when": "listFocus && !inputFocus && inQuickOpen"
}

Thanks, will wait for that :)

As a workaround you can configure these keybindings:

{
  "key": "ctrl+up",
  "command": "list.focusUp",
  "when": "listFocus && !inputFocus && inQuickOpen"
},
{
  "key": "ctrl+down",
  "command": "list.focusDown",
  "when": "listFocus && !inputFocus && inQuickOpen"
}

Hi...The code works pretty fine now....
Hi Could You Please let us know the code if we could use page up and page down with it too....
Like in previous versions....
Please....

As a workaround you can configure these keybindings:

{
  "key": "ctrl+up",
  "command": "list.focusUp",
  "when": "listFocus && !inputFocus && inQuickOpen"
},
{
  "key": "ctrl+down",
  "command": "list.focusDown",
  "when": "listFocus && !inputFocus && inQuickOpen"
}

I so regret not finding sooner my past few days were real hard struggle without this

Maybe it's just me, but new behavior is still not correct... When I bring up "quick open" list and attempt to move current item, it does move, but at the same time content scrolls too! That makes it difficult to see what I'm selecting as all items scroll.

The workaround was to add this snippet to key bindings:

{
    "key": "ctrl+up",
    // "command": "list.focusUp",
    "when": "listFocus && !inputFocus && inQuickOpen"
},
{
    "key": "ctrl+down",
    // "command": "list.focusDown",
    "when": "listFocus && !inputFocus && inQuickOpen"
}

Note the commented out commands.

Maybe it's just me, but new behavior is still not correct... When I bring up "quick open" list and attempt to move current item, it does move, but at the same time content scrolls too! That makes it difficult to see what I'm selecting as all items scroll.

The workaround was to add this snippet to key bindings:

{
  "key": "ctrl+up",
  // "command": "list.focusUp",
  "when": "listFocus && !inputFocus && inQuickOpen"
},
{
  "key": "ctrl+down",
  // "command": "list.focusDown",
  "when": "listFocus && !inputFocus && inQuickOpen"
}

Note the commented out commands.

Hi....
If You ask me I would suggest going back to the previous version that worked and then update to the newer version when it comes and if the newer version still causes problem downgrade to the version that previously worked.

https://code.visualstudio.com/updates/v1_43

Go to this link and download this version that is 1.43.2 which is stable and is working .
I my self went back to this version because this one is working pretty good.
You just have to download the setup and install it nothing will get affected and just vscode version will change but everything else will remain same like your opened tabs etc.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

trstringer picture trstringer  ·  3Comments

omidgolparvar picture omidgolparvar  ·  3Comments

sijad picture sijad  ·  3Comments

curtw picture curtw  ·  3Comments

lukehoban picture lukehoban  ·  3Comments