- CTRL + Shift + enter, the statement is complete
- "!", Negative completion. Press "!" when entering the expression. Key
- CTRL + e, the latest file
- CTRL + Shift + e, recently changed File
- Shift + Click to close files
- CTRL + [or] to start and end with braces
- CTRL + F12: displays the structure of the current file
- CTRL + F7: query the reference of the current element in the current file, and press F3 to select
- CTRL + n to quickly open the class
- CTRL + Shift + n to quickly open a file
- Alt + Q. You can see the declaration of the current method.
- CTRL + P to display parameter information
- CTRL + Shift + insert, you can select the clipboard content and insert
- Alt + insert, which can generate Constructors/getter/setter, etc.
- CTRL + ALT + V. You can introduce variables. For example, new string (); automatically imports variable definitions
- CTRL + ALT + T, you can package the code in a block, for example, try/catch
- CTRL + enter, import package, and automatically modify
- CTRL + ALT + L, format the code
- CTRL + ALT + I: automatically indent the selected code. This function can also work when editing JSP files.
- CTRL + ALT + O to optimize imported classes and packages
- CTRL + R, replace text
- CTRL + F, search for text
- CTRL + Shift + space to automatically complete the code
- CTRL + space, code prompt (conflicts with system input key)
- CTRL + Shift + ALT + N, find methods or variables in the class
- Alt + Shift + C, recent changes
- Alt + Shift + up/down, up/down a row
- Shift + F6, refactor-Rename
- CTRL + X to delete rows
- CTRL + D, copy the row
- CTRL +/or Ctrl + Shift +/, comment (// or /**/)
- CTRL + J, Automatic Code (for example: serr)
- CTRL + ALT + J, surrounded by dynamic templates
- CTRL + H: display the class structure diagram (class hierarchy)
- CTRL + Q: display the comment document
- Alt + F1, locate the code
- Alt + 1 to quickly open or hide the project panel
- CTRL + ALT + left/right, returns the previous browsing position
- Alt + left/right: Switch the Code view
- Alt + up/down, fast moving between methods
- CTRL + Shift + up/down, move up/down
- F2 or SHIFT + F2, highlighting errors or warnings for quick locating
- Tab. After the code tag is entered, press tab to generate the code.
- CTRL + Shift + F7, highlight all the text, Press ESC to highlight and disappear
- Alt + F3, search for the same text one by one and highlight it
- CTRL + up/down, move the cursor to the first or last line
- CTRL + B/Ctrl + Click to quickly open the class or method at the cursor (jump to the definition)
- CTRL + ALT + B, jump to the method implementation
- CTRL + Shift + backspace, jump to the Last edited place
- CTRL + O, rewrite Method
- CTRL + ALT + space, class name automatically completed
- CTRL + ALT + up/down to quickly jump to the search results
- CTRL + Shift + J, integrating two rows
- Alt + F8, calculate the variable value
- CTRL + Shift + v. you can insert the most recently used clipboard content to text.
- CTRL + ALT + Shift + V, simple Paste
- Shift + ESC: You can not only move the focus to the editor, but also hide the current (or last active) tool window.
- F12: Move the focus from the editor to the recently used tool window
- Shift + F1: Open the class or method used in the editor cursor character in the Java document browser
- CTRL + W. You can select a word and then execute the statement and then function.
- CTRL + Shift + W, deselect the word where the cursor is located
- Alt + F7: locate a class, method, or variable in the project
- CTRL + I, Implementation Method
- CTRL + Shift + u, case-insensitive Conversion
- CTRL + Y to delete the current row
- Shift + enter, Insert a new row downward
- Psvm/sout, main/system. Out. println (); Ctrl + J, view more
- CTRL + Shift + F, global search
- CTRL + F, find/Shift + F3, search up/F3, search down
- CTRL + Shift + S, Advanced Search
- CTRL + u, to the parent class
- CTRL + ALT + S to open the Setting Dialog Box
- Alt + Shift + inert, enable/disable column selection mode
- CTRL + ALT + Shift + S to open the current project/module attribute
- CTRL + G, locate the row
- Alt + home, jump to the navigation bar
- CTRL + enter, insert a row above
- CTRL + backspace, delete by word
- CTRL + "+/-", expanding and folding the current method
- CTRL + Shift + "+/-", expand and collapse all
[Debugging and compilation]
- CTRL + F2, stop
- Alt + Shift + F9, select debug
- Alt + Shift + F10, select Run
- CTRL + Shift + F9, compile
- CTRL + Shift + F10, run
- CTRL + Shift + F8 to view breakpoints
- F8, step by step
- F7, step
- Shift + F7, smart entry
- Shift + F8, step-out
- Alt + Shift + F8, forced step
- Alt + Shift + F7, forced entry
- Alt + F9, run at the cursor
- CTRL + ALT + F9, force run to cursor
- F9, Recovery Program
- Alt + F10, locate the breakpoint
- CTRL + F8 to switch the line breakpoint
- CTRL + F9 to generate a project
- Alt + 1, Project
- Alt + 2, favorites
- Alt + 6, todo
- Alt + 7, Structure
- CTRL + Shift + C, copy path
- CTRL + ALT + Shift + C, copy reference, class name must be selected
- CTRL + ALT + Y, synchronize
- CTRL + ~, Quick Switch solution (ui appearance, code style, shortcut key ing, and other menus)
- Shift + F12, restore the default Layout
- CTRL + Shift + F12, hide/restore all windows
- CTRL + F4, disable
- CTRL + Shift + F4, close the activity Tab
- CTRL + TAB to go to the next Splitter
- CTRL + Shift + TAB, go to the previous Splitter
[Reconstruction]
- CTRL + ALT + Shift + T. The refactoring menu is displayed.
- Shift + F6, rename
- F6, mobile
- F5, copy
- Alt + Delete, secure deletion
- CTRL + ALT + N, inline
[Search]
- CTRL + F, search
- CTRL + R, replace
- F3, find the next
- Shift + F3, find the previous
- CTRL + Shift + F, search in Path
- CTRL + Shift + R, replace in Path
- CTRL + Shift + S, search structure
- CTRL + Shift + M, replacing the structure
- Alt + F7, search usage
- CTRL + ALT + F7, display usage
- CTRL + F7, search for usage in the file
- CTRL + Shift + F7, highlighted in the File Usage
[VCs]
- Alt ++ ~, VCs operation menu
- CTRL + k, submit changes
- CTRL + T to update the project
- CTRL + ALT + Shift + D, show changes
From: http://www.cnblogs.com/tonycody/p/3257601.html