1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-19 18:33:43 +08:00
SpaceVim/autoload/SpaceVim/layers/operator.vim
2020-08-31 21:24:27 +08:00

26 lines
894 B
VimL

"=============================================================================
" operator.vim --- SpaceVim operator layer
" Copyright (c) 2016-2020 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
""
" @section operator, layer-operator
" @parentsection layers
" With this layer, you can confirm that text is yanked correctly and see
" yanked text by highlighting.
function! SpaceVim#layers#operator#plugins() abort
let plugins = []
call add(plugins, ['kana/vim-operator-user', { 'merged' : 0 }])
call add(plugins, ['haya14busa/vim-operator-flashy', { 'merged' : 0 }])
return plugins
endfunction
function! SpaceVim#layers#operator#config() abort
map y <Plug>(operator-flashy)
nmap Y <Plug>(operator-flashy)$
endfunction