diff options
author | ChristianChiarulli <[email protected]> | 2019-02-16 17:12:38 -0500 |
---|---|---|
committer | ChristianChiarulli <[email protected]> | 2019-02-16 17:12:38 -0500 |
commit | 7bdd4f7123d815cdad69f9d0ed248da6559b7d08 (patch) | |
tree | 01d037a299957cd818e04d302aaac21f58f6e6a7 /modules/test.vim | |
parent | fa1be111d1224f9dad7c4c94ff3ab30f64894023 (diff) |
added test file
Diffstat (limited to 'modules/test.vim')
-rw-r--r-- | modules/test.vim | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/modules/test.vim b/modules/test.vim new file mode 100644 index 00000000..bb9cb1ec --- /dev/null +++ b/modules/test.vim @@ -0,0 +1,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> |