https://github.com/serene-arc/vim-listings
Plugin for Vim to make lists
https://github.com/serene-arc/vim-listings
checkboxes keybindings list number vim
Last synced: 5 months ago
JSON representation
Plugin for Vim to make lists
- Host: GitHub
- URL: https://github.com/serene-arc/vim-listings
- Owner: Serene-Arc
- Created: 2020-05-01T02:26:12.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-01T06:34:00.000Z (almost 6 years ago)
- Last Synced: 2025-07-26T03:56:44.920Z (7 months ago)
- Topics: checkboxes, keybindings, list, number, vim
- Language: Vim script
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vim-list
This is meant to be a simple plugin to enable the easy creation of various types of lists in vim. At the current time, there are two types of supported lists: ordered numbered lists and unordered Markdown style lists. This means that the lines will be prefixed with either a number e.g. `1. ` or a minus sign e.g. `- `.
Where the numbered list is concerned, if there is another numbered listing on the two lines above then the list numbers will increase from that point.
## Keybindings
There are three keybindings for this plugin, and all three are bound with a leader key as the first tap.
- nl -> Numbered List
- gl -> Generic (Unordered) List
- dl -> Delete List
The deletion option only removes the characters input by the other options, so no other text should be destroyed.
## Checkboxes
This plugin is compatible with both the vim-outliner checkboxes and Markdown-format checkboxes as well.