Skip to content

Commit

Permalink
chore(doc): auto generate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 21, 2023
1 parent 74968cd commit 488d4e6
Showing 1 changed file with 33 additions and 56 deletions.
89 changes: 33 additions & 56 deletions doc/hurl.nvim.txt
Original file line number Diff line number Diff line change
@@ -1,61 +1,38 @@
*nvim-plugin-template.txt* For NVIM v0.8.0 Last change: 2023 August 05
*hurl.nvim.txt* For NVIM v0.8.0 Last change: 2023 October 21

==============================================================================
Table of Contents *nvim-plugin-template-table-of-contents*

1. nvim-plugin-template |nvim-plugin-template-nvim-plugin-template|
- Usage |nvim-plugin-template-nvim-plugin-template-usage|
- Format |nvim-plugin-template-nvim-plugin-template-format|
- Test |nvim-plugin-template-nvim-plugin-template-test|
- Ci |nvim-plugin-template-nvim-plugin-template-ci|
- More |nvim-plugin-template-nvim-plugin-template-more|
- License MIT |nvim-plugin-template-nvim-plugin-template-license-mit|

==============================================================================
1. nvim-plugin-template *nvim-plugin-template-nvim-plugin-template*

neovim plugin template integration test and doc publish


USAGE *nvim-plugin-template-nvim-plugin-template-usage*

1. click `use this template` button generate a repo on your github.
2. clone your plugin repo.open terminal then cd plugin directory.
3. run `python3 rename.py your-plugin-name` this will replace all `nvim-plugin-template` to your `pluing-name`.
then it will prompt you input `y` or `n` to remove example codes in `init.lua` and
`test/plugin_spec.lua`. if you are familiar this repo just input y. if you are first look at this
template I suggest you look at them first. after these step the `rename.py` will also auto
remove.

now you have a clean plugin env. enjoy!


FORMAT *nvim-plugin-template-nvim-plugin-template-format*

format use `stylua` and provide `.stylua.toml`.


TEST *nvim-plugin-template-nvim-plugin-template-test*

use vusted for test install by using `luarocks --lua-version=5.1 install
vusted` then run `vusted test` for your test cases.

create test case in test folder file rule is `foo_spec.lua` with `_spec` more
usage please check busted usage <https://lunarmodules.github.io/busted/>


CI *nvim-plugin-template-nvim-plugin-template-ci*

Ci support auto generate doc from README and integration test and lint check by
`stylua`.


MORE *nvim-plugin-template-nvim-plugin-template-more*

Other usage you can look at my plugins


LICENSE MIT *nvim-plugin-template-nvim-plugin-template-license-mit*
Table of Contents *hurl.nvim-table-of-contents*

- Usage |hurl.nvim-usage|
- Credits |hurl.nvim-credits|
Welcome to hurl.nvim 👋TBD
USAGE *hurl.nvim-usage*

>lua
{
"jellydn/hurl.nvim",
ft = "hurl",
cmd = { "HurlRun" },
opts = {
debug = true, -- default is false
},
keys = {
-- Run API request
{ "<leader>ra", "<cmd>HurlRun<CR>", desc = "Run API requests" },
-- Run API request in visual mode
{ "<leader>cr", ":HurlRun<CR>", desc = "Run API request", mode = "v" },
},
}
}
<


CREDITS *hurl.nvim-credits*

Inspired by ray-x/web-tools.nvim: Neovim plugin for web developers
<https://github.com/ray-x/web-tools.nvim> ## Show your support

Give a ⭐️ if this project helped you!

Generated by panvimdoc <https://github.com/kdheepak/panvimdoc>

Expand Down

0 comments on commit 488d4e6

Please sign in to comment.