1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 23:10:04 +08:00
SpaceVim/config/plugins/vim-expand-region.vim

16 lines
317 B
VimL
Raw Normal View History

2017-04-04 11:03:36 +08:00
xmap v <Plug>(expand_region_expand)
xmap V <Plug>(expand_region_shrink)
2017-04-04 21:42:17 +08:00
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,
\ }