Advertisement
Guest User

Untitled

a guest
May 30th, 2015
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 KB | None | 0 0
  1. Strg Alt Shift Key Function
  2. x Einf Generate/Insert dialog
  3. x x ENTER Statements completion like blocks and brackets
  4. x x T Surrond codeblock with…
  5. x W Select succesively increasing code blocks
  6. x F11 bookmarks and mark the line with selected key
  7. x F11 invokes a list of bookmarks. Pressing a key takes to associated bookmark.
  8. x x Backspace go to most recent code edit. Hit again to go even further back.
  9. x E recent opened files
  10. x x E recent edited files
  11. x x T create Test unit
  12. x x x N search for symbol, e.g. methodname
  13. x N Go to class
  14. x x A open dialog for searching for shortcuts
  15. x B Goto declaration
  16. x x B Goto implementation
  17. x U Goto super-method/super-class
  18. x O Select Method to Overrid/Implement Dialog
  19. x x O Organize Imports
  20. x x <- resp. -> to get back to where I was / go forward again
  21. x <- resp. -> navigate between tabs
  22. x x F7 Show usages
  23. x F7 Find usages
  24. x P Parameter info
  25. x F Find
  26. x x F Find in Path
  27. F3 Find next
  28. x F3 Find previous
  29. x x F3 (Find in path) to search in the whole project.
  30. F2 Next highlighted error
  31. x F2 Previous highlighted error
  32. x x V Introduce Variable Refactoring
  33. x Backspace Delete to word start
  34. x Delete Delete to word end
  35. x x M Extract Method
  36. x x V Past more recent elements from clipboard
  37. x F8 Set/Unset Breakpoint
  38. x x F8 View all Breakpoints
  39. x J Inser live Template
  40. x x F12 Maximize editor window
  41. x Q Quick JavaDoc Popup
  42. x x I Clean up tab misalignment
  43. x Pos1 Jump to breadcrumbs
  44. x F12 Popup class structure
  45. x D Repeat/copy current line directly beneath
  46. x H Type Hirarchy
  47. x x H Call Hirarchy of method
  48. x ! Select boolean from completion list, will negate it
  49. x x x T Refactor this
  50. x x Del Unwrap/Delete block
  51.  
  52. After enter press TAB:
  53. inn if not null - block
  54. ifn if null - block
  55. iter it will figure out the most likely variable you want to iterate over and generate a for loop for it
  56. inst check object type with instanceof block
  57. itco Iterate over collection
  58. itit Iterate over Iterator
  59. itli Iterate over List
  60. iten Iterate over Enumerator
  61. fori Create iteration loop
  62. itar Iterate elements of array
  63. ittok Iterate tokens from String
  64. itve Iterate element of Vector
  65. ritar Iterate elelemts of array in reverse order
  66. psf public static final block
  67. thr throw new block
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement