1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 13:00:04 +08:00
SpaceVim/bundle/vim-bepo/after/plugin/surround.vim
2020-06-13 14:06:35 +08:00

10 lines
326 B
VimL

" vim-bepo - Plugin vim pour disposition de clavier bépo
" Maintainer: Micha Moskovic
if exists("g:loaded_surround") && (!exists("g:surround_no_mappings") || ! g:surround_no_mappings) && maparg('cs', 'n') !=# ''
execute 'nmap ls' maparg('cs', 'n')
execute 'nmap lS' maparg('cS', 'n')
nunmap cs
nunmap cS
endif