NorminetteRun is a Vim plugin designed to seamlessly integrate the Norminette coding style checker into your workflow. It highlights code style issues directly in the buffer and displays error messages within the Vim interface.
- Real-time Code Style Feedback: Highlights Norminette errors directly in your code.
- Error Messages in Command Line: Displays detailed error messages when the cursor is placed on an error line.
- Manual Control: Easily trigger Norminette with a custom key mapping.
- Gutter Indicators: Adds visual indicators (red dots) in the gutter for lines with style errors.
- Add the following line to your
.vimrc:Plugin 'jeportie/NorminetteRun'
- Run
:PluginInstallinside Vim.
- Clone the repository:
git clone https://github.com/jeportie/NorminetteRun.git ~/.vim/pack/plugins/start/NorminetteRun - Add the following lines to your
.vimrcto map the Norminette run command:" Define the leader key if not already defined let mapleader = "\" " Map <Leader>n to run Norminette nnoremap <Leader>n :NorminetteRun<CR>
Run the following command from your terminal to install the plugin automatically:
./install.sh- Save the file or press
<Leader>n(default:\n) to run Norminette on the current file. - Move the cursor to a line with an error to see the corresponding Norminette error message in the command line.
- Style issues will be highlighted, and errors are visually indicated by red dots in the gutter.
This project is licensed under the MIT License.
