intellij notes

  1. List item

    文章目录

    • Intellij Notes
      • Reference :
      • Setting
        • short cut : `Ctrl `+ `Alt` + `S`
        • auto import package :
        • show method separators
        • postfix completion
        • change font size by mouse
        • show quick doc on mouse move
        • case insensitive
        • build project automatically
        • key map
      • Short Cut
        • code completion : `Alt` + `Space`
        • generate method auto : `Alt` + `Insert`
        • complete end : `Alt` + `Shift` + `Enter`
        • generate code template : `Ctrl` + `j`
        • format code : `Ctrl` + `Alt` + `l`
        • indent auto : `Ctrl` + `Alt` + `i`
        • show recent change : `Ctrl` + `e`
        • method parameter prompt : `Ctrl` + `p`
        • surround with code block template : `Ctrl` + `Alt` + `t`
        • delete line : `Ctrl` + `y`
        • copy line : `Ctrl` + `d`
        • select successively increasing code blocks : `Ctrl` + `w` otherwise: `Ctrl` +`Shift`+ `w`
        • switch method : `Alt`+ `d`
        • Search class : `Ctrl` + `n`
        • Search file: `Ctrl`+ `Shift`+ `n`
        • switch lower-case and upper-case : `Ctrl`+ `Shift`+ `u`
        • line comment : `Ctrl` + `/`
        • block comment : `Ctrl` + `Shift` + `/`
        • smart line split : `Ctrl` + `Enter` `Shift`+ `Enter`
        • paste from list `Ctrl`+ `Shift`+ `v`

Intellij Notes

Reference :

https://juejin.im/post/5a90810b6fb9a063606eefe0

Setting

short cut : Ctrl+ Alt + S

auto import package :

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-BqgWazzh-1584341503116)(images\setting_auto_import.png)]

show method separators

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-ro9vx7z6-1584341503122)(images\setting_show_method_separator.png)]

postfix completion

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-DqJvuafi-1584341503123)(images\setting_postfix_completion.png)]

change font size by mouse

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-ftfR7L0H-1584341503123)(images\setting_mouse_font.png)]

show quick doc on mouse move

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-zGqjgNa6-1584341503124)(images\setting_show_prompt.png)]

case insensitive

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-TiZYmb4S-1584341503124)(images\setting_case_insensitive.png)]

build project automatically

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-HWwe5B6V-1584341503125)(images\setting_build_project_auto.png)]

key map

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-6vs1nOJF-1584341503125)(images\setting_key_map.png)]

Short Cut

code completion : Alt + Space

generate method auto : Alt + Insert

complete end : Alt + Shift + Enter

generate code template : Ctrl + j

format code : Ctrl + Alt + l

indent auto : Ctrl + Alt + i

show recent change : Ctrl + e

method parameter prompt : Ctrl + p

surround with code block template : Ctrl + Alt + t

delete line : Ctrl + y

copy line : Ctrl + d

select successively increasing code blocks : Ctrl + w otherwise: Ctrl +Shift+ w

switch method : Alt+ d

Search class : Ctrl + n

Search file: Ctrl+ Shift+ n

switch lower-case and upper-case : Ctrl+ Shift+ u

line comment : Ctrl + /

block comment : Ctrl + Shift + /

smart line split : Ctrl + Enter Shift+ Enter

paste from list Ctrl+ Shift+ v

你可能感兴趣的:(Java)