An extension for Visual Studio Code that lets you easily add or remove .NET Core 1.1+ package references to/from your project's .csproj file using Code's Command Palette.
MIT License
34
stars
17
forks
source link
Consider making automatic (debounced) requests as the user types #3
Right now, requests for matching package names are made only after the user hits Enter to search. It might be a better experience for the user to get suggestions while typing. However, this needs to not cause lag and it also needs to not make too many requests to the server, so it's only here for consideration/investigation right now.
Appears to be impossible. VS Code doesn't seem to trigger relevant input events on the search input; it only provides the string contents of the input when the user hits Enter.
Right now, requests for matching package names are made only after the user hits Enter to search. It might be a better experience for the user to get suggestions while typing. However, this needs to not cause lag and it also needs to not make too many requests to the server, so it's only here for consideration/investigation right now.