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

https://github.com/kyle-wannacott/nvim-dogecomments

Help get :dog: to the :last_quarter_moon_with_face: by commenting out your code.
https://github.com/kyle-wannacott/nvim-dogecomments

commenter comments doge lua moon neovim neovim-plugin

Last synced: 11 months ago
JSON representation

Help get :dog: to the :last_quarter_moon_with_face: by commenting out your code.

Awesome Lists containing this project

README

          

## Description: Help get :dog: to the :last_quarter_moon_with_face: by commenting out your code.

Install: `Plug 'leewannacott/nvim-dogecomments'`

### Current Keymappings to call different functions:
```lua
-- Commands are silenced with
noremap cl :call Comment_line() -- Comment out a single line or multiple using count or VL mode.

noremap cL :call Comment_end_of_line() -- Places comment at end of line and enters insert mode.

noremap cc :call Comment_on_cursor() -- Places a comment on the cursor mark position.

noremap ct :call Comment_todo() -- Places a TODO comment.

noremap cd :call Comment_remove() -- Deletes comments placed at start of lines.

noremap cp :call Comment_doge() -- Prints ascii Doge.
```

### Development on this repository:

`Plug '/home/user/Desktop/nvim-dogecomments'`

TODO:

- [ ] Deploy server to AWS as EC2 instance to show global amount of lines of code commented out by users of the plugin.