Wir sind ein junger Verein, der es sich zum Ziel gesetzt hat, eine starke Entwickler-Community im Raum Ingolstadt aufzubauen. Als Java-User-Group liegt unser Fokus natürlich auf der Java-Plattform mit all ihren Facetten, jedoch befassen wir uns mit der gesamten Bandbreite der Software-Entwicklung und des Betriebs.
Unser monatlicher Termin ist kostenfrei und offen für jeden.
Unsere Präsenzen im Web:
Dieser Talk ist lizensiert unter CC BY-SA 4.0.
Some tips and tricks for more productivity
"Every second counts"
Stay in the "flow"
More comfortable
Browser
Terminal
Intellij
Ctrl+T Open new tab
Ctrl+W Close current tab
Ctrl+Shift+T Reopen last closed tab
Ctrl+N Open new browser window
Ctrl+Tab Switch to next tab
Ctrl+Shift+Tab Switch to previous tab
Alt+Left Arrow Back
Alt+Right Arrow Forward
Space Scroll down a frame
Shift+Space Scroll up a frame
What if I want to click on a link?
What if I want to search for a specific tab?
Solution: vimium (github.com/philc/vimium)
Fix mistakes in prompt with vi-mode
set -o vi # in bashrc
bindkey -v # in zshrc
fish_vi_key_bindings # in .config/fish/config.fish
Fix command with fc
fc # to fix the last executed command
fc -l # to list previous commands
fc -l 600 # to fix specific command
tmux (github.com/tmux/tmux/wiki)
tmux new -s session-name # start tmux session with a name
Ctrl+b c # create new window
Ctrl+b % # split window horizontally
Ctrl+b " # split window vertically
Ctrl+d # close pane or window
Ctrl+b w # choose a window to open
Ctrl+b d # detach from session
tmux ls # list session
tmux attach -t session-name # attach to session
Ctrl+Shift+A: find action
Ctrl+E: recent file, window
Alt+1-9: open window
Ctrl+Shift+F12: hide all window
Ctrl+N: search class
Ctrl+Shift+N: search file
Ctrl+Shift+Alt+N: search symbols
2xShift: search everywhere
Ctrl+Shift+T: open corresponding test class
Ctrl+Alt+Left/Right: go back/forward
Ctrl+Shift+E: recent location
Alt+Insert: context menu
Ctrl+Alt+V: extract
Ctrl+Shift+Enter: complete statement
Alt+/: hippie completion
Ctrl+Shift+Space: smart completion
Ctrl+F12: navigate in file
Ctrl+Y: delete a line
Ctrl+D: duplicate a line
Ctrl+W: select code
Ctrl+Shift+Up/Down: move code
Shift+Alt+Up/Down: move line of code
Ctrl+Shift+V: choose content to paste
Ctrl+Tab: cycle through editor
Shift+F6: rename for anything, that needs to be renamed
Ctrl+P: show parameters of a function
Ctrl+Shift+F: search in project
Ctrl+Shift+I: open quick definition look up