From 8bb88b81a307746ceaf8e3b10137399d980f8903 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Tue, 12 Mar 2024 17:51:36 +0000 Subject: Add win selectors to help select the window one wants to jump to. --- plugin/warp.vim | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'plugin') diff --git a/plugin/warp.vim b/plugin/warp.vim index 4052622..c414501 100644 --- a/plugin/warp.vim +++ b/plugin/warp.vim @@ -1,3 +1,7 @@ +" Uses a strategy that allows the user to select an arbitrary line and column by +" using 2x2 key strokes. Is more complex, but most powerful. +command! WarpFull lua require('warp').run(require('warp.strategy.grid').grid_strategy, require('warp.win_selectors.prompt')) + " Uses a strategy that allows the user to select an arbitrary line and column by " using 2x2 key strokes. Is more complex, but most powerful. command! WarpGrid lua require('warp').run(require('warp.strategy.grid').grid_strategy) -- cgit