Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brandonwillard/vim-noweb
Vim plugin providing noweb features.
https://github.com/brandonwillard/vim-noweb
neovim noweb vim-plugin
Last synced: 26 days ago
JSON representation
Vim plugin providing noweb features.
- Host: GitHub
- URL: https://github.com/brandonwillard/vim-noweb
- Owner: brandonwillard
- License: gpl-3.0
- Created: 2017-08-27T16:34:44.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-19T22:26:42.000Z (about 7 years ago)
- Last Synced: 2024-06-11T22:57:58.056Z (5 months ago)
- Topics: neovim, noweb, vim-plugin
- Language: Vim script
- Size: 46.9 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# `vim-noweb`
Tools for noweb files, projects and their development.
## Installation
Requires Neovim with Python 3.
1. Extract the files and put them in your Neovim directory (usually `$XDG_CONFIG_HOME/nvim/`).
2. Execute `:UpdateRemotePlugins` and restart Neovim.For [`vim-plug`](https://github.com/junegunn/vim-plug)
```viml
Plug 'brandonwillard/vim-noweb', { 'do': ':UpdateRemotePlugins' }
```## Requirements
`vim-noweb` requires that Neovim be compiled with `python3`.
If `:echo has("python3")` returns `1`, then you're done; otherwise, see below.You can enable the Python 3 interface with `pip`, e.g.:
```bash
$ pip3 install neovim
```# Development
The layout/design of this plugin is modeled after [deoplete.nvim](https://github.com/Shougo/deoplete.nvim).
## Documentation
Vimdocs are generated with the Python module [`vimdoc`](https://github.com/google/vimdoc). Just run `vimdoc`.