GitHub - LumaKernel/fern-mapping-reload-all.vim: fern.vim plugin to reload from root (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

fern-mapping-reload-all.vim

fern plugin

Mapping to reload from root.

Installation

Example for dein with TOML.

[[plugins]] repo = 'LumaKernel/fern-mapping-reload-all.vim' depends = ['fern.vim']

Usage

No default mappings.

You can use this as the action reload:all . Please map by yourself.

function s:init_fern_mapping_reload_all() nmap R (fern-action-reload:all) endfunction augroup my-fern-mapping-reload-all autocmd! * autocmd FileType fern call s:init_fern_mapping_reload_all() augroup END