This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " install cyclops.vim to enable dot or pair repeat functionality | |
| let s:begin_delimiters = '({[' | |
| let s:end_delimiters = ')}]' | |
| let s:delimiters = s:begin_delimiters .. s:end_delimiters | |
| xmap ad <cmd>call <sid>VisualBracketTextObj('expand', 'all', v:count1)<cr> | |
| omap ad <cmd>call <sid>OpPendingBracketTextObj('expand', 'all', v:count1)<cr> | |
| xmap id <cmd>call <sid>VisualBracketTextObj('expand', 'inner', v:count1)<cr> | |
| omap id <cmd>call <sid>OpPendingBracketTextObj('expand', 'inner', v:count1)<cr> |