An open API service indexing awesome lists of open source software.

https://github.com/mrtazz/vim-snipple

the simplest vim snippet management tool possible
https://github.com/mrtazz/vim-snipple

plugin snippets vim vim-plugin viml vimscript

Last synced: about 1 year ago
JSON representation

the simplest vim snippet management tool possible

Awesome Lists containing this project

README

          

# vim-snipple

## Overview
I wanted to manage some snippets but all the snippet management plugins
provided too many options and features. I have very pedestrian needs, so I
just wanted to do 2 things:

1. List all available snippets
2. Load the selected snippet into the current buffer

It deliberately doesn't do any expansion of things or support variables or
anything like that.

## Usage

`:SnippleLoad `

## Configuration

- `g:SnippleBaseDir`: Location of your snippets, defaults to `~/.snippets`

Example snippets directory:

```
~/.snippets
├── go
│   └── test.snippet
└── ruby
└── test.snippet
```