Sublime and Tmux Shortcuts
20 December 2021 -
less than 1 min read time
Tags:
Software Development
Sublime Shortcuts to use
- Cntrl + mouse right click : multiple cursor
- Cntrl + d : select next occurence of word that you had selected
- Slect on thing hold on cntrl and select other : now we can copy paste multiple
- Cntrl + p : go to anything ( get preview of files that you had visited earlier)
- Cntrol + p + : -> allow to navigate tot he line number
- Cntrl + shift + p -> set the syntax of the file that you want to
- F3 : find next
- Shift + F3 : find previous
- cntrl + shift + F : find in files
Other Resources :
Other short notes 1
Short Notes 2
Tmux Shortcuts to use (based on my ~/.tmux.conf
)
- Start new with session name:
tmux new -s myname
- Attach to the named session:
tmux a -t myname
- List sessions:
tmuz ls
- Kill session:
tmux kill-session -t myname
- Prefix I use:
C-a
- Create window:
c
- List Windows:
w
- Next Window:
n
- Previous Window:
p
- Find Window:
f
- Rename Window:
,
- Kill Window:
&
- Shortcuts with panes:
- Vertical Split:
|
- Horizontal Split:
_
- Switch Panes with
Alt+ <arror_keys>
- Incse you face incompatiblity with agnoster theme and tmux, use
tmux -u
to intiate tmux
Resources
- https://gist.github.com/MohamedAlaa/2961058
- https://tmuxcheatsheet.com/
- https://www.hamvocke.com/blog/a-guide-to-customizing-your-tmux-conf/
- https://github.com/gpakosz/.tmux/blob/master/.tmux.conf