summaryrefslogtreecommitdiff
path: root/modules/test.vim
blob: bb9cb1ec06ea4d756c24a5f8f33feca4a2622a66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"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>