Visual Studio key bindings configuration file

时间秒杀一切 提交于 2019-12-04 13:07:12

Not the most ideal format, but there is the currentsettings.vssettings file located in your profile. There is a section that looks something like this

<UserShortcuts>
    <RemoveShortcut Command="Edit.LineOpenAbove" Scope="Text Editor">Ctrl+Enter</RemoveShortcut>
    ...
    <Shortcut Command="Refactor.Rename" Scope="Text Editor">F2</Shortcut>
    ...
</UserShortcuts>

Once you have a list of all the commands your might be interested in, it should be fairly easy to edit your default keyboard settings in the file. Under the Tools menu is an option to import/export settings from a vssettings file.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!