我在Windows 10 Build 10130上使用Visual Studio 2015 Release Candidate(RC)。
我想创建一个Visual Studio 2015键盘快捷键,以便提交当前文件"在“代码编辑器”窗口中,当我在“解决方案资源管理器”窗口中选择了一个或多个文件时,或。
这怎么可能?
答案 0 :(得分:6)
在Visual Studio环境中按照以下说明操作:
<!-- 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命令Team.Git.Commit
重复上述步骤,但将Text Editor
替换为步骤#5。使用相同的键盘快捷键来保持一致性。
Solution Explorer
窗口中按键盘快捷键时,您将在编辑器中提交当前打开的文件。Text Editor
窗口中按键盘快捷键时,您将提交在Solution Explorer
中选择的所有已更改/添加的文件。