From a43c8b2d1e426893e9a61a3e71315e8caeeb6ee2 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Sat, 17 Aug 2024 23:49:19 +0200 Subject: nvim: Create winmove for faster window/tab movement --- .config/nvim/init.lua | 8 +++---- .config/nvim/plugin/winmove.vim | 47 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+), 4 deletions(-) create mode 100644 .config/nvim/plugin/winmove.vim (limited to '.config') diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index c44aa7f..285b334 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -56,14 +56,14 @@ vim.keymap.set('x', 'a', 'gg0oG$', { desc = 'Select the [A]ll of the buffer' }) vim.keymap.set('o', 'a', ':normal! ggVG', { desc = 'Text object of [A]ll of the buffer', silent = true }) -vim.keymap.set('n', '', '', - { desc = 'Move focus to the left window' }) vim.keymap.set('n', '', '', { desc = 'Move focus to the lower window' }) vim.keymap.set('n', '', '', { desc = 'Move focus to the upper window' }) -vim.keymap.set('n', '', '', - { desc = 'Move focus to the right window' }) +vim.keymap.set('n', '', ':WinMovePrev', + { desc = 'Move focus to the left window', silent = true }) +vim.keymap.set('n', '', ':WinMoveNext', + { desc = 'Move focus to the right window', silent = true }) vim.keymap.set('n', 'h', function() vim.cmd 'split' end, { desc = 'Open a [H]orizontal split' }) vim.keymap.set('n', 'v', function() vim.cmd 'vsplit' end, diff --git a/.config/nvim/plugin/winmove.vim b/.config/nvim/plugin/winmove.vim new file mode 100644 index 0000000..a72f6ab --- /dev/null +++ b/.config/nvim/plugin/winmove.vim @@ -0,0 +1,47 @@ +if &cp || exists('g:loaded_winmove') + finish +endif +let g:loaded_winmove = v:true + +function! winmove#Next() + let l:n1 = winnr() + wincmd l + if l:n1 != winnr() + return + endif + + tabnext + + let l:n1 = winnr() + while v:true + wincmd h + let l:n2 = winnr() + if l:n1 == l:n2 + return + endif + let l:n1 = l:n2 + endwhile +endfunction + +function! winmove#Prev() + let l:n1 = winnr() + wincmd h + if l:n1 != winnr() + return + endif + + tabprev + + let l:n1 = winnr() + while v:true + wincmd l + let l:n2 = winnr() + if l:n1 == l:n2 + return + endif + let l:n1 = l:n2 + endwhile +endfunction + +command! -nargs=0 WinMoveNext call winmove#Next() +command! -nargs=0 WinMovePrev call winmove#Prev() -- cgit v1.2.3