" The vim textobject plugin to search and select 'sandwich' like structure " Last Change: 30-Oct-2021. " Maintainer : Masaaki Nakamura " License : NYSL " Japanese " English (Unofficial) if exists("g:loaded_textobj_sandwich") finish endif let g:loaded_textobj_sandwich = 1 nnoremap (textobj-sandwich-auto-i) textobj#sandwich#auto('n', 'i') onoremap (textobj-sandwich-auto-i) textobj#sandwich#auto('o', 'i') xnoremap (textobj-sandwich-auto-i) textobj#sandwich#auto('x', 'i') nnoremap (textobj-sandwich-auto-a) textobj#sandwich#auto('n', 'a') onoremap (textobj-sandwich-auto-a) textobj#sandwich#auto('o', 'a') xnoremap (textobj-sandwich-auto-a) textobj#sandwich#auto('x', 'a') nnoremap (textobj-sandwich-query-i) textobj#sandwich#query('n', 'i') onoremap (textobj-sandwich-query-i) textobj#sandwich#query('o', 'i') xnoremap (textobj-sandwich-query-i) textobj#sandwich#query('x', 'i') nnoremap (textobj-sandwich-query-a) textobj#sandwich#query('n', 'a') onoremap (textobj-sandwich-query-a) textobj#sandwich#query('o', 'a') xnoremap (textobj-sandwich-query-a) textobj#sandwich#query('x', 'a') nnoremap (textobj-sandwich-literal-query-i) textobj#sandwich#query('n', 'i', {}, []) onoremap (textobj-sandwich-literal-query-i) textobj#sandwich#query('o', 'i', {}, []) xnoremap (textobj-sandwich-literal-query-i) textobj#sandwich#query('x', 'i', {}, []) nnoremap (textobj-sandwich-literal-query-a) textobj#sandwich#query('n', 'a', {}, []) onoremap (textobj-sandwich-literal-query-a) textobj#sandwich#query('o', 'a', {}, []) xnoremap (textobj-sandwich-literal-query-a) textobj#sandwich#query('x', 'a', {}, [])