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
- Host: GitHub
- URL: https://github.com/cxwx/cxcpptools
- Owner: cxwx
- License: mit
- Created: 2026-02-19T08:43:40.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-02-28T11:13:42.000Z (4 months ago)
- Last Synced: 2026-02-28T15:24:21.397Z (4 months ago)
- Topics: cpp, neovim, neovim-plugin
- Language: Lua
- Homepage:
- Size: 152 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```
