@@ -32,6 +32,10 @@ cnoremap <silent> <Plug>(fall-switch-renderer-first) <Cmd>call fall#internal#dis
3232cnoremap <silent> <Plug> (fall-switch-renderer-last) <Cmd> call fall#internal#dispatch(#{type: 'switch-renderer-at', index: '$'})<CR>
3333cnoremap <silent> <Plug> (fall-switch-renderer-prev) <Cmd> call fall#internal#dispatch(#{type: 'switch-renderer', amount: -1, cycle: v:true})<CR>
3434cnoremap <silent> <Plug> (fall-switch-renderer-next) <Cmd> call fall#internal#dispatch(#{type: 'switch-renderer', amount: 1, cycle: v:true})<CR>
35+ cnoremap <silent> <Plug> (fall-switch-previewer-first) <Cmd> call fall#internal#dispatch(#{type: 'switch-previewer-at', index: 0})<CR>
36+ cnoremap <silent> <Plug> (fall-switch-previewer-last) <Cmd> call fall#internal#dispatch(#{type: 'switch-previewer-at', index: '$'})<CR>
37+ cnoremap <silent> <Plug> (fall-switch-previewer-prev) <Cmd> call fall#internal#dispatch(#{type: 'switch-previewer', amount: -1, cycle: v:true})<CR>
38+ cnoremap <silent> <Plug> (fall-switch-previewer-next) <Cmd> call fall#internal#dispatch(#{type: 'switch-previewer', amount: 1, cycle: v:true})<CR>
3539
3640" Preview
3741cnoremap <silent> <Plug> (fall-preview-first) <Cmd> call fall#internal#dispatch(#{type: 'preview-component-execute', command: 'silent! normal! gg'})<CR>
@@ -82,6 +86,7 @@ if !get(g:, 'fall_disable_default_mapping')
8286 cnoremap <nowait> <F2> <Plug> (fall-switch-matcher-next)
8387 cnoremap <nowait> <F3> <Plug> (fall-switch-sorter-next)
8488 cnoremap <nowait> <F4> <Plug> (fall-switch-renderer-next)
89+ cnoremap <nowait> <F5> <Plug> (fall-switch-previewer-next)
8590 endfunction
8691
8792 augroup fall_mapping_plugin
0 commit comments