Vs shortcut key.

Source: Internet
Author: User

Shortcut for "text operation"

 

Command name Shortcut Key Description

Edit. collapse to definition

CTRL + M, CTRL + O

Automatically determine the logical boundaries (such as processes) of the region created in the code, and then hide them.

Edit. Comment the selected content

CTRL + k, CTRL + c

Mark the current line of the Code as a comment using the correct annotation syntax of the programming language. (Vc2003)

Edit. Complete word

CTRL + J Alt + right-click

Displays the complete words based on the current language ". (Vc2003)

Edit. Delete

Delete

Delete a character on the right of the cursor.

Edit. Delete backward

Backspace SHIFT + backspace

Delete a character on the left of the cursor.

Edit. Delete horizontal Blank

CTRL + k, CTRL + \

Collapse the white space in the selected content. If no white space is selected, the white space next to the cursor is deleted.

Edit. Orchestration document format

CTRL + k, CTRL + d

Follow the settings specified in the format settings pane of the language in the "options" dialog box "Text Editor" to apply indentation and space format settings to the language.

Edit. format selected content

Alt + F8 Ctrl + k, CTRL + F

The selected code lines are correctly indented Based on the surrounding code lines. (Vc2003) (Alt + F8 call macro Resource Manager)

Edit. Hide selected content

CTRL + M, CTRL + H

Hide selected text. The signal icon marks the position of hidden text in the file.

Edit. Insert tab

Tab

Indent a text line with a specified number of spaces, for example, five. (This shortcut supports multi-row operations)

Edit. Cut row

CTRL + l shift + ALT + L

Cut all selected rows to the clipboard. If no content is selected, the current row is cut to the clipboard. (Vc2003) (SHIFT + ALT + L does not work)

Edit. Delete row

CTRL + Shift + L

Delete all selected rows. If no row is selected, delete the current row.

Edit. Open new row

CTRL + enter

Insert an empty row above the insertion point. (No matter where the cursor is in a row)

Edit. Open a new row

CTRL + Shift + enter

Insert an empty row under the insert point. (In this way, you do not need to move the cursor to the beginning or end of the line first)

Edit. Row transpose

Shift + ALT + T

Move the row containing the insert point to the next row. (It can be seen as a two-row exchange)

Edit. Convert to lowercase

CTRL + u

Change the selected text to lowercase characters.

Edit. Convert to uppercase

CTRL + Shift + u

Change the selected text to uppercase.

Edit. Rewrite Mode

Insert

Switch between the insert mode and the rewrite insert mode. Only available when using a text editor.

Edit. Stop hiding the current region

CTRL + M, CTRL + u

Remove the outline display information of the currently selected area.

Edit. Stop outline display

CTRL + M, CTRL + P

Remove all outline display information from the entire document.

Edit. Switch positioning point

CTRL + R, CTRL + P

Switches the positioning point and end point of the selected content.

Edit. Left indent

Shift + Tab

Shifts the selected row to the left of a tab. (This shortcut supports multi-row operations)

Edit. Switch all outline display

CTRL + M, CTRL + L

Switch all text sections marked as hidden between the hidden and displayed states.

Edit. Switch bookmarks

CTRL + F2 Ctrl + k, CTRL + k

Set or remove bookmarks in the current row.

Edit. Switch outline display

CTRL + M, CTRL + m

Switch the currently selected hidden text section between hide and show.

Edit. Switch task list shortcut

CTRL + k, CTRL + H

Set or remove shortcuts in the current row.

Edit. Switch to automatic line feed

CTRL + R, CTRL + R

Enable or disable automatic line feed in the editor.

Edit. uncomment selected content

CTRL + k, CTRL + u

Removes the comment syntax from the current line of the Code.

Edit. View Blank

CTRL + Shift + 8 Ctrl + R, CTRL + W

Display or hide spaces and Tab labels.

Edit. The word is deleted until it ends.

CTRL + Delete

Delete the word to the right of the insert point.

Edit. The word is deleted until it starts.

CTRL + backspace

Delete the word on the left of the insert point.

Edit. Transpose

CTRL + Shift + T

Insert words on both sides of the vertex. For example,Main intChangeInt main.

Project shortcut

Command name Shortcut Key Description
Generate. Generate Solution CTRL + Shift + B Use the current solution configuration to generate all projects in the solution.
File. New File CTRL + Shift + n The new file dialog box is displayed. You can select a new file to be added to the current project.
File. Create a project CTRL + n Displays a sub-menu that lists the types of projects that can be added to the current open project. The icon is changed to the type of the previous project to be added.
File. open the file CTRL + Shift + O The open file dialog box is displayed. You can select an existing file to open.
File. Open the project CTRL + O The open project dialog box is displayed, from which new or existing projects can be added to the solution.
Project. Add existing items CTRL + Shift + d The "add existing items" dialog box is displayed.
Project. Add a new project CTRL + d The "Add new project" dialog box is displayed. This dialog box enables you to select the items to be added to the current project.
"Debug" shortcut
Command name Shortcut Key Description
Debugging. All interruptions CTRL + break Temporarily stop all processes in the debugging session. Only applicable to "running" mode.
Debugging. breakpoint CTRL + B The breakpoint dialog box is displayed, where you can add and modify breakpoints.
Debug. Call Stack CTRL + ALT + c The "call stack" window is displayed to display the list of all the active processes or stack frames of the current execution thread. Only applicable to "running" mode.
Debug. Clear all breakpoints CTRL + Shift + F9 Clear all breakpoints in the project.
Debug. Enable breakpoint CTRL + F9 Set a breakpoint on the current row.
Debugging. Exception CTRL + Shift + E The "exception" dialog box is displayed.
Debugging. Instant CTRL + ALT + I The "instant" window is displayed, in which expressions can be calculated and a single command can be executed.
Debugging. Local Variables CTRL + ALT + L The "local variables" window is displayed to view the variables and their values for each process in the current stack frame.
Debugging. Process CTRL + Shift + R The process dialog box is displayed. This dialog box allows you to debug multiple programs in a single solution.
Debugging. Quick monitoring Shift + F9 The "quick monitor" dialog box with the current value of the selected expression is displayed. Applies only to the "interrupt" mode. Use this command to check the current values of variables, attributes, or other expressions that have not defined a monitoring expression for it.
Debug. Restart CTRL + Shift + F5 Terminate the debugging session, regenerate it, and run the application from the beginning. It can be used in interrupt and run modes.
Debug. Run the document CTRL + ALT + R The "Run document" window is displayed, showing the document set that is in the debugging process. Applicable to "running" mode.
Debug. Run to the cursor CTRL + F10 In "interrupt" mode, the Code continues to be executed from the current statement until the selected statement. The "currently executed row" margin indicator appears in the "margin indicator" column.
In "design" mode, start the debugger and execute the code until the cursor position.
Debug. Set the next statement CTRL + Shift + F10 Set the execution point on the selected code line.
Debug. display the next statement In alt + number key area * Highlight the next statement to be executed.
Debug. Start F5 Automatically attaches the debugger and runs the application from the startup form specified in the <project> Properties dialog box. If it is in the "interrupt" mode, it is changed to "continue ".
Debugging. Start execution without debugging CTRL + F5 Run the code without calling the debugger.
Debug. Statement by statement F11 After the function is called, the code is executed one by one. That is, one-step execution, useful for tracking programs!
Debug. Jump out Shift + F11 The remaining row of the function for executing the current execution point.
Debugging. Process-by-Process F10 Execute the next line of code without executing any function call.
Debug. Stop debugging Shift + F5 Stop the current application in the running program. It can be used in interrupt and run modes.
Debugging. Thread CTRL + ALT + H Display the "Thread" window to view all the threads of the current process and their related information.
Debug. Switch breakpoint F9 Set or remove a breakpoint in the current row.
Debugging. Monitoring 1 CTRL + ALT + W, 1 key The monitoring 1 window is displayed to view the values of the selected variables or monitoring expressions.
Debugging. Monitoring 2 CTRL + ALT + W, 2 The monitoring 2 window is displayed to view the values of the selected variables or monitoring expressions.
Debugging. Monitoring 3 CTRL + ALT + W, 3 key The monitoring 3 window is displayed to view the values of the selected variables or monitoring expressions.
Debugging. Monitoring 4 CTRL + ALT + w, 4 keys The monitoring 4 window is displayed to view the values of the selected variables or monitoring expressions.
Shortcut for "search and replace"
Command name Shortcut Key Description
Edit. Search CTRL + F The "Search" dialog box is displayed.
Edit. Find the next F3 Find the next match of the last searched text.
Edit. Search for the next selected item CTRL + F3 Search for the next match of the selected text in the document.
Edit. Search for the previous one Shift + F3 Search for the previous match in the search text.
Edit. Search for the previous selected item CTRL + Shift + F3 Search for the previous match or word at the inserted symbol of the selected text.
Edit. Go to the search box CTRL + Shift + F Place the inserted symbol in the "Search/command" box on the "standard" toolbar.
Edit. Hide text Alt + F3, n Select or clear the "Search hidden text" option in the "Search" and "replace" dialog boxes.
Edit. case-insensitive match Alt + F3, c Select or clear the "case-sensitive matching" option for the search and replacement operations.
Edit. Regular Expression Alt + F3, R Select or clear the regular expression option that allows special characters. Only applicable to the search, replace, search in file, replace in file dialog box, and search/command box.
Edit. Replace CTRL + H The "replace" dialog box is displayed.
Edit. Stop search Alt + F3, S Pause the current "search in files" operation.
Edit. Up Alt + F3, B Select or clear the "search up" option for the "Search" and "replace" operations.
Edit. Full match Alt + F3, W Select or clear the "full match" option for the "Search" and "replace" operations. Only applicable to the search, replace, search in file, replace in file dialog box, and search/command box.
Shortcut for "text navigation"
Command name Shortcut Key Description
Edit. Move character left Left arrow Move the insertion point to the left.
Edit. Right Shift character Right arrow Move the insertion point one character to the right.
Edit. End of the document CTRL + end Move the insertion point to the last line of the document.
Edit. The document starts. CTRL + home Move the insertion point to the first line of the document.
Edit. Go CTRL + G The "go to line" dialog box is displayed.
Edit. Go to braces CTRL +] Move the insertion point to the next braces in the document.
Edit. Move a row down Down Arrow Moves the insert point down a row.
Edit. End of line End Move the insert point to the end of the row.
Edit. Beginning of Line Home Move the insert point to the beginning of the row.
Edit. Move a row up Up Arrow Move a row from the insert point.
Edit. Next bookmarks CTRL + k, CTRL + n Move to the next bookmarks in the document.
Edit. Flip down Page down Scroll down a document or window.
Edit. Page up Page up Scroll up a document or window.
Edit. Last bookmarks CTRL + k, CTRL + P Move to the previous bookmarks.
Edit. Scroll down a row CTRL + down arrow Scroll down a line of text.
Edit. Scroll up a row CTRL + up arrow Scroll up a line of text.
Edit. view top CTRL + page up Move the cursor to the first line at the top of the current window. Only applicable to the "html" view of the HTML editor.
Edit. View Blank CTRL + R, CTRL + W Display or hide spaces and Tab labels.
Edit. Next word CTRL + right arrow Shifts the insert point to the right of a word.
Edit the last word. CTRL + left arrow Move the insertion point to the beginning of the previous word.
View. view code F7 The selected items are displayed in the "code" view of the editor.
View. View designer Shift + F7 Displays the selected items in the design view of the editor or designer.

 

Shortcut for "Window Management"

Command name Shortcut Key Description
Window. Activation document window ESC Close the menu or dialog box, cancel ongoing operations, or focus on the current document window.
Window. Close the document window CTRL + F4 Close the currently selected document window.
Window. Close the tool window Shift + ESC Close the tool window, such as "task list" and "toolbox ".
Window. Next document window CTRL + F6
CTRL + Tab
The window is cyclically passed through the MDI subwindow one by one.
Window. Next pane Alt + F6 Move to the next tool window.
Window. Next split pane F6 Move to the next pane of the split pane view of a single document.
Window. Next Tab CTRL + Page down Move to the next tab in the document or window.
Window. Previous document window CTRL + Shift + F6
CTRL + Shift + Tab
Move to the previous document in the editor.
Window. Last pane Shift + ALT + F6 Move to the last selected window.
Window. Last split pane Shift + F6 Move to the previous document pane in the split pane view.
Window. Previous Tab CTRL + page up Move to the previous tab in the document or window.
"Tool window" shortcut
Command name Shortcut Key Description
View. Document outline CTRL + ALT + T The document outline window is displayed to view the outline of the current document.
View. Object Browser CTRL + ALT + B

F2

The "Object Browser" is displayed to view the classes, properties, methods, events and constants that can be used for packages, as well as the object libraries and processes in the project. In the editor, the F2 key only displays the Object Browser.
View. Output CTRL + ALT + O The "output" window is displayed, which displays generation and other status information.
View. Attribute window F4 The "properties" window is displayed.
View. Attribute page Shift + F4 The properties page of the currently selected item in the Solution Explorer window is displayed.
View. Refresh CTRL + R Update the information currently displayed in the Web browser window.
View. Solution Resource Manager CTRL + ALT + J The Solution Explorer window is displayed.
View. Task List CTRL + ALT + k The "task list" window is displayed. You can customize, classify, and manage tasks, comments, shortcuts, warnings, and errors.
View. toolbox CTRL + ALT + x The toolbox is displayed ".

Vs shortcut key.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.