0% found this document useful (0 votes)
37 views1 page

shortcuts== ctrl+o== to see in the

The document provides a comprehensive list of keyboard shortcuts for coding and debugging, including commands for selecting text, searching files, navigating methods, and formatting code. It also includes instructions for debugging, such as setting breakpoints and tracking execution flow. Additionally, it mentions specific shortcuts for working with Lombok in Java and managing class details.

Uploaded by

rahulbadhe630
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
37 views1 page

shortcuts== ctrl+o== to see in the

The document provides a comprehensive list of keyboard shortcuts for coding and debugging, including commands for selecting text, searching files, navigating methods, and formatting code. It also includes instructions for debugging, such as setting breakpoints and tracking execution flow. Additionally, it mentions specific shortcuts for working with Lombok in Java and managing class details.

Uploaded by

rahulbadhe630
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

ctrl + i = select text and then (ctrl+i)

TO BACKTRACK CODE FROM LOGS ==> CTRL+H==> DO THE FILE SEARCH

ctrl+h==> search word with all occurrences

ctrl+alt+h ==>know method call from how many places==> after ctrl+t ==> to go
inside method

shortcuts==> ctrl+o==> to see in the object that which getter and setter are
present(lombok)
coming from (lombok.data) using lombok jar in classpath

alt+(left arrow) ==> to return at callers place

ctrl+shift+ t==> to search into the class

alt + down/up arrow==> move linees

f2==> read the detaila about class

ctrl+ shift+f => to format the code

alt+shift+r ==> refactor

To backtrack from logs find static value from the logs


Shortcutctrl + h file search  paste string  select *  search and reach to
codes place}

Ctrl+alt+h get to know from where method called /how many times it get called

TODEBUG

start server in debug mode debug as ==>


breakpoint => helps you to track running execution flow
debug tab==> application threads running
resume ==> execute further till whenever next breakpoint hits

================---------=======--------======-=-=--=-=-=--
F3 - Gets you inside the code
Alt <- move to the place where you called F3
Alt ->
ctrl + d: to delete a line
ctrl + shift + t (java type)
ctrl + shift + r (any file type)
rtclick => source => generate getter / setter / generate toString
ctrl + shift + o
ctrl + t : on method.. you can go to the implementation

ctrl+k > find next


ctrl + shift + k => find previous
ctrl+k > find next
ctrl + shift + k => find previous

You might also like