shitcoding128 downloadsSwitch between last two active tabs with a single hotkey (Alt-Tab behavior)
A minimal Obsidian plugin that switches between the last two active tabs (Alt-Tab behavior).
tabjump:switch)tabjump:move-tab-left)tabjump:move-tab-right)Add to .obsidian.vimrc:
" Switch between last two tabs
exmap tabjump obcommand tabjump:switch
nmap <Space><Space> :tabjump<CR>
" Move tab left/right
exmap movetableft obcommand tabjump:move-tab-left
exmap movetabright obcommand tabjump:move-tab-right
nmap M :movetableft<CR>
nmap m :movetabright<CR>
activeLeaf)