" 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.col_selectors.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.col_selectors.grid').grid_strategy) " Has the user select the column based on nows. command! WarpWords lua require('warp').run(require('warp.col_selectors.words').words_strategy) " Warps to the line and leaves the cursor on the current line. command! WarpLine lua require('warp').run(require('warp.col_selectors.null').null_strategy) noremap (warp-grid) WarpGrid noremap (warp-words) WarpWords noremap (warp-line) WarpLine onoremap v(warp-grid) WarpGrid onoremap v(warp-words) WarpWords onoremap v(warp-line) WarpLine