mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 03:00:06 +08:00
16 lines
317 B
VimL
16 lines
317 B
VimL
xmap v <Plug>(expand_region_expand)
|
|
xmap V <Plug>(expand_region_shrink)
|
|
let g:expand_region_text_objects = {
|
|
\ 'iw' :0,
|
|
\ 'iW' :0,
|
|
\ 'i"' :0,
|
|
\ 'i''' :0,
|
|
\ 'i]' :1,
|
|
\ 'ib' :1,
|
|
\ 'iB' :1,
|
|
\ 'il' :1,
|
|
\ 'ii' :1,
|
|
\ 'ip' :0,
|
|
\ 'ie' :0,
|
|
\ }
|