Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. # Keyboard shortcuts for fast editing in Netbeans
  2.  
  3. ## Cursor movement
  4. * ```Home``` Move cursor to beginning of line
  5. * ```End``` Move cursor to end of line
  6. * ```Ctrl + Home``` Move cursor to beginning of file
  7. * ```Ctrl + End``` Move cursor to end of file
  8. * ```Ctrl + Left/Right``` Move cursor to next/previous word
  9. * ```Ctrl + Up/Down``` Move view of file up/down without moving cursor
  10.  
  11. ## Highlighting, copying and moving text
  12. * ```Shift``` Holding shift while moving the cursor to highlight text
  13. * ```Ctrl + c``` Copy highlighted text to clipboard
  14. * ```Ctrl + x``` Cut highlighted text to clipboard
  15. * ```Ctrl + v``` Paste text from clipboard
  16. * ```Alt + Shift + Up/Down``` Move highlighted text up or down
  17. * ```Ctrl + Shift + Up/Down``` Dublicate highlight above or below
  18.  
  19. ## Working with lines
  20. * ```Ctrl + e``` Delete line
  21. * ```Ctrl + Enter``` Insert new line above cursor
  22. * ```Shift + Enter``` Insert new line below cursor
  23. * ```Alt + Shift + Up/Down``` Move current line up or down
  24. * ```Ctrl + Shift + Up/Down``` Dublicate current line above or below
  25. * ```Ctrl + c``` Copy line to clipboard
  26. * ```Ctrl + x``` Cut line to clipboard
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement