- Visual Studio 2013 Cookbook
- Jeff Martin Richard Banks
- 590字
- 2021-07-16 12:26:35
Finding Visual Studio commands
The goal of the Quick Launch box is to provide a keyboard-friendly way of accessing the extended features of Visual Studio without needing to clutter the central interface. Keyboard shortcuts are a great way to speed up tasks, but it can be difficult to learn and remember while first starting out, or while exploring a new area of Visual Studio. The Quick Launch option addresses this by providing a way to locate different areas of the program, learn keyboard shortcuts, and provide a keyboard-centric way to access commands.
Getting ready
Simply start Visual Studio 2013.
How to do it…
To try it out, start by pressing Ctrl + Q, then begin typing the topic/subject that you are looking for, as shown in the following screenshot:

What is important to notice is that Quick Launch can do even more than what may be obvious at first glance. In this example, notice that open
was the term entered as a search term. Quick Launch produces a list of results to this query, grouped by the following categories: Menus, Options, and NuGet Packages. As you can see, this list of results is more than just commands, it also includes various areas in the Options dialog as well as NuGet Packages.
You can immediately navigate through the search results with the arrow keys on the keyboard if the desired result is immediately available. You can access a command directly from this list, and where available, the accompanying keyboard hotkey for a command will be listed. In this way, you can learn new shortcuts while doing your daily work.
In the next example, jquery
was entered into Quick Launch, producing a list of results that includes context-specific File menu commands (Save and Save As), the option to switch to an open editor window with jquery
in the file name (jquery.ui.autocomplete.min.css
), or to search NuGet for packages using jquery
as the search term.
The following screenshot is showing the availability of these various options:

There's more…
The Quick Launch option can go further. Let's return to the results of the open
term. Note that at the bottom, the Quick Launch option indicates that Ctrl + Q can index through additional views. Additional presses of Ctrl + Q will toggle the list of results to show only results from an individual category, in this case Menus, Options, or NuGet Packages. A final press of Ctrl + Q will return to displaying all of the available results. The ability to toggle through categories is particularly useful when your Quick Launch list is lengthy and you would like to ignore unnecessary categories that are cluttering the list of results. Pressing Esc once will clear the search results in Quick Launch, and pressing Esc again will return you to the open file in your editor.
Tip
Using the Command Window / Command Aliases
The Command Window (accessible via Ctrl +Alt +A and available on premium editions of VS2013) allows you to keep your hands on the keyboard while quickly accessing commands via an integrated command prompt window. As Microsoft ships Visual Studio preloaded with command definitions, entering an alias will display all of the currently defined commands, and the alias
cmd action (where cmd is the desired name of your alias and action defines what should happen) will allow you to define your own. You can see from the following screenshot that typing bl
is much faster than typing Debug.Breakpoints
. Note that by default, command aliases are stored as part of your synchronized profile:

- Embedded Linux Projects Using Yocto Project Cookbook
- C++ Primer習題集(第5版)
- Java程序設計實戰教程
- Learning PostgreSQL
- JavaScript:Functional Programming for JavaScript Developers
- Java從入門到精通(第4版)
- Java技術手冊(原書第7版)
- jQuery從入門到精通 (軟件開發視頻大講堂)
- SQL Server 2012數據庫管理與開發項目教程
- Hands-On GPU:Accelerated Computer Vision with OpenCV and CUDA
- 碼上行動:用ChatGPT學會Python編程
- Mastering openFrameworks:Creative Coding Demystified
- MySQL入門很輕松(微課超值版)
- Mastering AWS Security
- Spring 5 Design Patterns