Skip to content
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

Can't select recently visited file using arrow keys #94775

Closed
Artur2 opened this issue Apr 9, 2020 · 10 comments
Closed

Can't select recently visited file using arrow keys #94775

Artur2 opened this issue Apr 9, 2020 · 10 comments
Assignees
Labels
bug Issue identified by VS Code Team member as probable bug candidate Issue identified as probable candidate for fixing in the next release quick-pick Quick-pick widget issues verified Verification succeeded

Comments

@Artur2
Copy link

Artur2 commented Apr 9, 2020

  • 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

@Artur2 Artur2 changed the title Can select recently visited file using arrow keys Can't select recently visited file using arrow keys Apr 9, 2020
@Artur2
Copy link
Author

Artur2 commented Apr 9, 2020

Video of issue reproducing - https://monosnap.com/file/Utk8gEgiS0INNGDqKOhjAZjYzQi68Q

@Artur2
Copy link
Author

Artur2 commented Apr 9, 2020

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

@gmccullo
Copy link

I get this too. It's pretty painful.

@bpasero bpasero added bug Issue identified by VS Code Team member as probable bug candidate Issue identified as probable candidate for fixing in the next release labels Apr 10, 2020
@bpasero bpasero added this to the March 2020 Recovery milestone Apr 10, 2020
@bpasero
Copy link
Member

bpasero commented Apr 10, 2020

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

@bpasero
Copy link
Member

bpasero commented Apr 10, 2020

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

bpasero added a commit that referenced this issue Apr 10, 2020
@Artur2
Copy link
Author

Artur2 commented Apr 10, 2020

Thanks, will wait for that :)

bpasero added a commit that referenced this issue Apr 14, 2020
@bpasero bpasero added the quick-pick Quick-pick widget issues label Apr 14, 2020
@bpasero bpasero closed this as completed Apr 14, 2020
bpasero added a commit that referenced this issue Apr 14, 2020
bpasero added a commit that referenced this issue Apr 14, 2020
This reverts commit 723175e.
bpasero added a commit that referenced this issue Apr 14, 2020
This reverts commit a2b8208.
@bpasero bpasero reopened this Apr 14, 2020
bpasero added a commit that referenced this issue Apr 14, 2020
bpasero added a commit that referenced this issue Apr 14, 2020
@bpasero bpasero reopened this Apr 14, 2020
bpasero added a commit that referenced this issue Apr 15, 2020
@bpasero bpasero closed this as completed Apr 15, 2020
@Usman1395
Copy link

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....

@chrmarti chrmarti added the verified Verification succeeded label Apr 16, 2020
@brandedoutcast
Copy link

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

@mikekov
Copy link

mikekov commented Apr 18, 2020

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.

@Usman1395
Copy link

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.

@github-actions github-actions bot locked and limited conversation to collaborators May 30, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Issue identified by VS Code Team member as probable bug candidate Issue identified as probable candidate for fixing in the next release quick-pick Quick-pick widget issues verified Verification succeeded
Projects
None yet
Development

No branches or pull requests

7 participants