McAuley Penney 98b6209b31 docs: update README
• update installation string
    • add "About" section
2022-05-27 12:51:16 -07:00
2022-01-08 10:51:32 -07:00
2021-12-20 21:26:33 -07:00
2022-05-27 12:51:16 -07:00

tidy.nvim 🧹

A function and autocommand pair that removes all

- trailing whitespace
- empty lines at the end of the buffer

on every BufWritePre.

tidy

Notes: See the cfg branch for increased functionality and configuration.

About

I wrote this as a wrapper around a few of the classic and ecumenical vim regex commands for formatting files before I began using formatters. These commands can be found in any vim resource; they are not mine. My contribution is a basic conditional which protects the user from an error when the cursor is in the group of empty lines removed from the end of the buffer. Even with real formatters in my setup now I still like and use this because I like these specific formats to be applied to every buffer and don't want to have a formatting tool installed for them. There really isn't a reason to have this in a plugin other than wanting to disseminate this for new users and people who didn't know you could do this. You could (should) instead just yank and put the code right in your config.

Installation

  • Packer
use "mcauley-penney/tidy.nvim"

or with lazy-loading

use{ "mcauley-penney/tidy.nvim", event = "BufWritePre" }

Credits

Todo

  • preserve undotree
Description
A small Neovim plugin to remove trailing whitespace and empty lines at end of file on every save
Readme 66 KiB
Languages
Lua 100%