update
This commit is contained in:
parent
767403f684
commit
0e5c58d387
2 changed files with 7 additions and 3 deletions
|
|
@ -77,11 +77,13 @@ map <leader>" <action>(SplitHorizontally)
|
|||
" Buffers
|
||||
let g:WhichKeyDesc_Buffer = "<leader>b Buffers"
|
||||
let g:WhichKeyDesc_BufferDelete = "<leader>bd Delete Buffer"
|
||||
let g:WhichKeyDesc_BufferDelete = "<leader>bo Delete Other Buffers"
|
||||
let g:WhichKeyDesc_BufferDelete = "<leader>bp Toggle Pin"
|
||||
let g:WhichKeyDesc_BufferOtherDelete = "<leader>bo Delete Other Buffers"
|
||||
let g:WhichKeyDesc_BufferPin = "<leader>bp Toggle Pin"
|
||||
let g:WhichKeyDesc_BufferDeleteNonPin = "<leader>bP Delete Non Pinned Buffers"
|
||||
map <leader>bd <action>(CloseContent)
|
||||
map <leader>bo <action>(CloseAllEditorsButActive)
|
||||
map <leader>bp <action>(PinActiveEditorTab)
|
||||
map <leader>bP <action>(CloseAllUnpinnedEditors)
|
||||
|
||||
" Popup Navigation
|
||||
inoremap <C-j> <Action>(PopupMenu-selectNext)
|
||||
|
|
|
|||
4
.zshrc
4
.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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue