diff options
Diffstat (limited to 'plugin/warp.vim')
-rw-r--r-- | plugin/warp.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugin/warp.vim b/plugin/warp.vim index 4052622..c414501 100644 --- a/plugin/warp.vim +++ b/plugin/warp.vim @@ -1,5 +1,9 @@ " 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) " Has the user select the column based on nows. |