Visual Studio 2015 RC ::键盘快捷键"提交当前文件"

时间:2015-06-22 16:01:03

标签: visual-studio-2015

我在Windows 10 Build 10130上使用Visual Studio 2015 Release Candidate(RC)。

我想创建一个Visual Studio 2015键盘快捷键,以便提交当前文件"在“代码编辑器”窗口中,当我在“解决方案资源管理器”窗口中选择了一个或多个文件时,

这怎么可能?

1 个答案:

答案 0 :(得分:6)

在Visual Studio环境中按照以下说明操作:

  1. 打开工具 - >选项
  2. 导航至环境 - >键盘
  3. 输入"提交"进入包含
  4. 的Show命令
  5. 选择<!-- Sid Drawer --> <!-- this layout can reach under statusbar --> <LinearLayout android:id="@+id/drawer_view" android:layout_width="270dp" android:layout_height="match_parent" android:layout_gravity="start|top" android:background="@android:color/white" android:clickable="true" android:fitsSystemWindows="true" android:orientation="vertical"> <!-- but this layout (as header) can not reach under statusbar, just above Toolbar --> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@drawable/drawer_header"> <TextView style="@style/DefaultTextStyle" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_gravity="bottom" android:padding="@dimen/padding_base" android:text="@string/app_name" /> </LinearLayout> </LinearLayout> Visual Studio命令
  6. 中使用新快捷方式下,选择Team.Git.Commit
  7. 按快捷键下,键入快捷方式(例如 CTRL + SHIFT + C CTRL + SHIFT + C
  8. 重复上述步骤,但将Text Editor替换为步骤#5。使用相同的键盘快捷键来保持一致性。

    结果

    • 当您在Solution Explorer窗口中按键盘快捷键时,您将在编辑器中提交当前打开的文件。
    • 当您在Text Editor窗口中按键盘快捷键时,您将提交在Solution Explorer中选择的所有已更改/添加的文件。

    enter image description here