"============================================================================= " operator.vim --- SpaceVim operator layer " Copyright (c) 2016-2023 Wang Shidong & Contributors " Author: Wang Shidong < wsdjeg@outlook.com > " URL: https://spacevim.org " License: GPLv3 "============================================================================= "" " @section operator, layers-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 (operator-flashy) nmap Y (operator-flashy)$ endfunction function! SpaceVim#layers#operator#health() abort call SpaceVim#layers#operator#plugins() call SpaceVim#layers#operator#config() return 1 endfunction