From 0e5c58d387a0c19fa47c51e7197445dcc0f7b3d1 Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Sat, 29 Mar 2025 07:55:34 -0500 Subject: [PATCH] update --- .ideavimrc | 6 ++++-- .zshrc | 4 +++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.ideavimrc b/.ideavimrc index 44a7bfa..b090e37 100644 --- a/.ideavimrc +++ b/.ideavimrc @@ -77,11 +77,13 @@ map " (SplitHorizontally) " Buffers let g:WhichKeyDesc_Buffer = "b Buffers" let g:WhichKeyDesc_BufferDelete = "bd Delete Buffer" -let g:WhichKeyDesc_BufferDelete = "bo Delete Other Buffers" -let g:WhichKeyDesc_BufferDelete = "bp Toggle Pin" +let g:WhichKeyDesc_BufferOtherDelete = "bo Delete Other Buffers" +let g:WhichKeyDesc_BufferPin = "bp Toggle Pin" +let g:WhichKeyDesc_BufferDeleteNonPin = "bP Delete Non Pinned Buffers" map bd (CloseContent) map bo (CloseAllEditorsButActive) map bp (PinActiveEditorTab) +map bP (CloseAllUnpinnedEditors) " Popup Navigation inoremap (PopupMenu-selectNext) diff --git a/.zshrc b/.zshrc index ae1805b..4bc9324 100644 --- a/.zshrc +++ b/.zshrc @@ -24,7 +24,9 @@ if command -v tmux &> /dev/null && [[ "$TERMINAL_EMULATOR" == "JetBrains-JediTer if tmux has-session -t $session_name; then tmux attach -t $session_name else - tmux new -s $session_name + tmux new-session -s $session_name -c $cwd -d + tmux send-keys -t $session_name "tmux set-option status off;clear" Enter + tmux attach -t $session_name fi fi