LunarVim/modules/test.vim
ChristianChiarulli 7bdd4f7123 added test file
2019-02-16 17:12:38 -05:00

19 lines
466 B
VimL

"Place for me to test things"
let s:menus = {}
let s:menus.denite = { 'description': 'denite commands' }
let s:menus.denite.command_candidates = [
\ ['> file_rec', 'Denite file_rec'],
\ ['> file_mru', 'Denite file_mru'],
\ ]
call denite#custom#var('menu', 'menus', s:menus)
function Command ()
set wrap
set nobuflisted
:pedit ~/.config/nvim/commands/leadercommands.txt
endfunction
nmap <silent> <C-B> :call SaveBackup()<CR>