From 9fbee0a2936e12fc6bf12beac123e487130b5d66 Mon Sep 17 00:00:00 2001 From: Sir AppSec Date: Fri, 6 Sep 2024 23:22:14 +0300 Subject: [PATCH] vimdocs: change name --- .github/workflows/docs.yml | 2 +- doc/my-template-docs.txt | 54 -------------------------------------- 2 files changed, 1 insertion(+), 55 deletions(-) delete mode 100644 doc/my-template-docs.txt diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 0b8d187..2074959 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -12,7 +12,7 @@ jobs: - name: panvimdoc uses: kdheepak/panvimdoc@main with: - vimdoc: my-template-docs + vimdoc: hacker-helper-docs version: "Neovim >= 0.8.0" demojify: true treesitter: true diff --git a/doc/my-template-docs.txt b/doc/my-template-docs.txt deleted file mode 100644 index ad4848f..0000000 --- a/doc/my-template-docs.txt +++ /dev/null @@ -1,54 +0,0 @@ -*my-template-docs.txt* For Neovim >= 0.8.0 Last change: 2024 September 06 - -============================================================================== -Table of Contents *my-template-docs-table-of-contents* - -1. Hacker Helper |my-template-docs-hacker-helper| - - Using it |my-template-docs-hacker-helper-using-it| -2. Links |my-template-docs-links| - -============================================================================== -1. Hacker Helper *my-template-docs-hacker-helper* - - - -A few Snippets to help hacking - -1. Execute commands in toggle term by selection - - -USING IT *my-template-docs-hacker-helper-using-it* - ->lua - # Add to plugins/hacker-helper.lua - return { - { - "SirAppsec/hacker-helper.nvim", - dependencies = { - { 'luarocks/luasocket', rocks = 'luasocket' } - }, - opts = { - prefix = "r", -- Change base prefix to r - keys = { - run_exec = "e", -- re (Execute Command in Terminal) - encode_prefix = "de", -- rde (Encode Group) - decode_prefix = "d", -- rd (Decode Group) - encode_url = "u", -- rdeu (URL Encode) - decode_url = "u", -- rdu (URL Decode) - encode_base64 = "b", -- rdeb (Base64 Encode) - decode_base64 = "b", -- rdb (Base64 Decode) - }, - }, - }, - } -< - -============================================================================== -2. Links *my-template-docs-links* - -1. *GitHub Workflow Status*: https://img.shields.io/github/actions/workflow/status/SirAppsec/hacker-helper.nvim/lint-test.yml?branch=main&style=for-the-badge -2. *Lua*: https://img.shields.io/badge/Made%20with%20Lua-blueviolet.svg?style=for-the-badge&logo=lua - -Generated by panvimdoc - -vim:tw=78:ts=8:noet:ft=help:norl: