Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeanguyomarch/vim-metacomment
Add a special framed, centered comment
https://github.com/jeanguyomarch/vim-metacomment
Last synced: 27 days ago
JSON representation
Add a special framed, centered comment
- Host: GitHub
- URL: https://github.com/jeanguyomarch/vim-metacomment
- Owner: jeanguyomarch
- License: mit
- Created: 2013-09-02T22:42:20.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2022-05-07T09:40:37.000Z (over 2 years ago)
- Last Synced: 2023-08-03T08:38:47.984Z (over 1 year ago)
- Language: Vim script
- Homepage:
- Size: 5.18 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# vim-metacomment
## What does this thing do?
Basically, type `:MetaComment Blah blah, some text`, this inserts in your
buffer a boxed comment that looks like this, starting at the position of your
cursor:```
//============================================================================//
// Blah blah, some text //
//============================================================================//
```## Installation
With [vim-plug][1], add the following line to your vim/neovim configuration
file:```
Plug 'jeanguyomarch/vim-metacomment'
```## Usage
In a nutshell, just use `:MetaComment `. See the documentation (i.e.,
`:help vim-metacomment`) for details.## Limitations
* The comment box is ill-formed if the cursor is not in the first column.
* The comment box does not support multi-line text.
* The size of the comment box is fixed.## License
See [`LICENSE.md`](LICENSE.md).
[1]: https://github.com/junegunn/vim-plug