小编典典

在Visual Studio 2013中自定义键盘快捷键

json

基本上,我想添加一个快捷键以在注释代码上写我的签名和当前数据以及时间,以查看将来何时以及由谁更改代码!我在网上搜索,发现可以从工具>修改键盘快捷方式或文件>首选项>快捷键快捷方式中打开KeyBinding.json文件以打开。.但是我的菜单中没有可用的选项或子菜单。


阅读 285

收藏
2020-07-27

共1个答案

小编典典

您可以使用我的Visual Commander扩展来创建这样的命令并为其分配快捷方式:

Sub Run(DTE As DTE2, package As Package) Implements ICommand.Run
    Dim textSelection As EnvDTE.TextSelection
    textSelection = CType(DTE.ActiveDocument.Selection(), EnvDTE.TextSelection)
    textSelection.Text = "My sign " + System.DateTime.Now.ToLongDateString() + " " + 
        System.DateTime.Now.ToLongTimeString()  
End Sub
2020-07-27