~xenrox/srht-patches.nvim

a93fc1bc9c2634bcdd7bc9009fda453cd332194c — Thorben Günther 2 years ago 1a5f7b3
Update README
1 files changed, 17 insertions(+), 0 deletions(-)

A README.md
A README.md => README.md +17 -0
@@ 0,0 1,17 @@
# srht-patches.nvim

srht-patches.nvim is a plugin for neovim that helps to set the status of patchsets.
It currently supports "applied" (`PatchApplied`), "rejected" (`PatchRejected`) and "needs revision" (`PatchNeedsRevision`).
You can either bind these commands to bindings or use the `setup` function to configure this plugin to ask for the status on save (`auto_check`).
This can be further fine-tuned by setting a list of regexes (`address_list`) against which the To-header will be compared.

## Configuration

Use the setup function to configure this plugin.

```lua
require("srht-patches").setup({
  auto_check = true,
  address_list = { "~xenrox/.*@lists.xenrox.net" },
})
```