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

https://github.com/cxwx/cxcpptools

Some cpp tools for neovim
https://github.com/cxwx/cxcpptools

cpp neovim neovim-plugin

Last synced: 2 days ago
JSON representation

Some cpp tools for neovim

Awesome Lists containing this project

README

          

# List of C++ Tools

- [List of C++ Tools](#list-of-c-tools)
- [Install](#install)
- [USAGE](#usage)

## Install

for `lazy.nvim`

```lua
{
"cxwx/cxcpptools",
opts = {},
keys = {
{ ",og", function()
require('cxcpptools').generate_getter_setter() end,
desc = "gen getter setter" },
}
},
```

## USAGE

- [X] getter setter for class members

```lua
require('cxcpptools').generate_getter_setter
```

![demo](demo/getter_setter.gif)