Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/LumaKernel/fern-mapping-reload-all.vim
fern.vim plugin to reload from root
https://github.com/LumaKernel/fern-mapping-reload-all.vim
fern fern-vim-plugin vim
Last synced: 3 months ago
JSON representation
fern.vim plugin to reload from root
- Host: GitHub
- URL: https://github.com/LumaKernel/fern-mapping-reload-all.vim
- Owner: LumaKernel
- Created: 2020-03-30T15:58:02.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-03-30T16:02:56.000Z (over 4 years ago)
- Last Synced: 2024-06-10T01:38:22.346Z (5 months ago)
- Topics: fern, fern-vim-plugin, vim
- Language: Vim script
- Homepage:
- Size: 4.88 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fern-mapping-reload-all.vim
[![fern plugin](https://img.shields.io/badge/🌿%20fern-plugin-yellowgreen)](https://github.com/lambdalisue/fern.vim)
Mapping to reload from root.
## Installation
Example for [dein](https://github.com/Shougo/dein.vim) with TOML.
```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.
```vim
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
```