Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrsloth-dev/42-norminettenvim
A simple linter plugin for format checking with norminette inside the buffer
https://github.com/mrsloth-dev/42-norminettenvim
42 42porto 42portugal norminette nvim nvim-plugin
Last synced: about 1 month ago
JSON representation
A simple linter plugin for format checking with norminette inside the buffer
- Host: GitHub
- URL: https://github.com/mrsloth-dev/42-norminettenvim
- Owner: MrSloth-dev
- License: mit
- Created: 2024-08-28T16:26:15.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-25T13:53:19.000Z (about 2 months ago)
- Last Synced: 2024-09-29T06:02:38.348Z (about 1 month ago)
- Topics: 42, 42porto, 42portugal, norminette, nvim, nvim-plugin
- Language: Lua
- Homepage:
- Size: 11.7 MB
- Stars: 20
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 42-NorminetteNvim
This plugin allows to show the norminette errors inside your buffer, through diagnostics and it's compatible with quickfixlist!
It only works for `.c` and `.h` files.![Demo](https://github.com/MrSloth-dev/42-NorminetteNvim/blob/main/Showcase/Showcase.gif?raw=true)
## Install
📦 Packer 📦```
use {
"MrSloth-dev/42-NorminetteNvim",
requires = { "nvim-lua/plenary.nvim", "echasnovski/mini.icons" },
config = function()
require("norminette").setup({
keybind = "n",
diagnostic_color = "#00ff00",
show_size = true,
})
end,
}
```💤 Lazy.nvim 💤
```
{
"MrSloth-dev/42-NorminetteNvim",
dependencies = { "nvim-lua/plenary.nvim" , "echasnovski/mini.icons"},
config = function()
require("norminette").setup({
keybind = "n",
diagnost_color = "#00ff00",
show_size = true,
})
end,
},
```## Dependecies
- [Neovim >= 0.10](https://neovim.io/)
- [Norminette](https://github.com/42School/norminette)
- [Plenary.nvim](https://github.com/nvim-lua/plenary.nvim) for async.
- [mini.icons](https://github.com/echasnovski/mini.icons) for toggle icon.## Usage
You can activate the toggle two ways : `:Norminette` or using the `n`, notice that you can change the keybind to your liking.
By default the plugin is running on a asynchronous process to prevent slowdowns. But if you find the constant errors popping up or notice a slowdown, try to disable it.
Tip: To open a split with the quickfix list you can use a functionality of neovim and assign it to a keybind like
```
vim.keymap.set("n", "q", vim.diagnostic.setloclist, { desc = "Open diagnostic [Q]uickfix list" })
```
This way you only need to press `q` and the split opens automatically.## Known Issues
- This plugin isn't working on 42's PCs through the flatpak.
To report a bug or ask for a feature, please open a [Github issue](https://github.com/MrSloth-dev/42-NorminetteNvim/issues/new)
## Roadmap
- [x] Detect functions through tree-sitter
- [x] Improve performance
- [ ] Integrate with statusline other than default
- [ ] Auto-formatter## Changelog
All notable changes to this project will be documented in this file.### [0.5.5] - 2024-09-30
#### BugFix
- Remade the function to calculate size, instead of Regex, now it uses [Neovim's TreeSitter](https://tree-sitter.github.io/tree-sitter/)
- Plugin wasn't showing the errors when activated, as pretended.### [0.5] - 2024-09-25
#### Added
- Now it can show Function size as messages
- An icon in right side of status bar to know if the plugin is activated or not. May not work with other status line other than the default, if requested, I'll make it work.#### Changed
- To reduce the workload the event that activated the functions were altered from "CursorHold" to "{ "TextChanged", "TextChangedI" }", so the diagnostics update when it detect changes is text.#### BugFix
- There was an error when the plugin was called through `:Norminette` that was calling an old function.### [0.4] - 2024-09-19
#### Changed
- Reworked the way that the plugin works, now it's a toggle that you can turn on and [off](https://www.youtube.com/watch?v=p85xwZ_OLX0).
- Changed the bullet point in errors.#### Added
- Symbol in statusline to see if the toggle is on or off.
- Added diagnostic_color, not working (yet).### [0.3] - 2024-09-07
In this version I added asynchronous task for the norminette so there won't be a slowdown
#### Fixed
On the previous version the toggle wasn't working properly because it wasn't clearning the diagnostics after running the command.
Still doesn't Work in 42 yet.### [0.2] - 2024-09-06
In this version I added asynchronous task for the norminette so there won't be a slowdown
#### Changed
- Added [Plenary](https://github.com/nvim-lua/plenary.nvim) for async task for norminette.### [0.1] - 2024-08-28
### Added
- This is the first Version, it's working outside the 42's Computers.## License
MIT