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
- Host: GitHub
- URL: https://github.com/mrtazz/vim-snipple
- Owner: mrtazz
- License: mit
- Created: 2022-10-06T09:59:39.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-28T12:51:35.000Z (over 3 years ago)
- Last Synced: 2025-02-02T00:27:38.602Z (over 1 year ago)
- Topics: plugin, snippets, vim, vim-plugin, viml, vimscript
- Language: Vim Script
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```