Compare commits

..

2 Commits

Author SHA1 Message Date
cc130f0c4d Add kill-window binding 2025-08-19 15:35:22 +01:00
e3dd81ed15 Add project bind to select ~/Projects 2025-08-19 15:35:18 +01:00
2 changed files with 4 additions and 1 deletions

View File

@@ -16,5 +16,5 @@ project=$(
fzf --layout=reverse --info=hidden --border=rounded --cycle fzf --layout=reverse --info=hidden --border=rounded --cycle
) )
tmux new-window -n $project -c "~/Projects/$project" tmux new-window -n $project -c ~/Projects/$project
~/.local/share/tmux/layouts/window-auto ~/.local/share/tmux/layouts/window-auto

View File

@@ -75,6 +75,9 @@ bind I display-popup -S fg=#54546D -b rounded -d '#{pane_current_path}' -E '$SHE
bind C-n next-window bind C-n next-window
bind C-p previous-window bind C-p previous-window
# Kill current window
bind W kill-window
# Make new splits open in current directory # Make new splits open in current directory
bind '"' split-window -c '#{pane_current_path}' bind '"' split-window -c '#{pane_current_path}'
bind '%' split-window -h -c '#{pane_current_path}' bind '%' split-window -h -c '#{pane_current_path}'