I've been using VSCode a lot lately and have gotten used to the keys-shortcuts/key-bindings (Ctrl+D, Ctrl+P, Alt+leftArrow, etc). However I've recently had some work where I needed to use regular Visual Studio (Microsoft Visual Studio Enterprise 2019) and it's painful remembering two different shortcut keys.
Is there a way to import VSCode key-shortcuts to into regular Visual Studio?
I've looked at this question and there wasn't much help besides manually changing them one at a time.
UPDATE: now the above post answers the question now that I posed Francois du Plessis's answer there.
.vssetting
file with some of VS Code shortcuts: gist.github.com/jaywick/588ea04e11f74c726a9eed3ccc684bf6 . To be used in Visual Studio it needs to be imported viaTools
->Import and Export Settings
as described here – Kirchhoff