From bd7f6b61ac2330811a7b1ee2adc6f69319298145 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 22 Oct 2024 14:56:44 +0000 Subject: [PATCH] chore(doc): auto generate docs --- doc/hurl.nvim.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/doc/hurl.nvim.txt b/doc/hurl.nvim.txt index 313b872..73dec2f 100644 --- a/doc/hurl.nvim.txt +++ b/doc/hurl.nvim.txt @@ -89,6 +89,7 @@ Add the following configuration to your Neovim setup with lazy.nvim { "A", "HurlRunner", desc = "Run All requests" }, { "a", "HurlRunnerAt", desc = "Run Api request" }, { "te", "HurlRunnerToEntry", desc = "Run Api request to entry" }, + { "tE", "HurlRunnerToEnd", desc = "Run Api request from current entry to end" }, { "tm", "HurlToggleMode", desc = "Hurl Toggle Mode" }, { "tv", "HurlVerbose", desc = "Run Api in verbose mode" }, -- Run Hurl request in visual mode @@ -277,6 +278,12 @@ Note: it’s running from start of file to the selected entry and ignore the remaining of the file. It is useful for debugging purposes. +RUN FROM CURRENT ENTRY TO END ~ + +Similar to `HurlRunnerToEntry`, we could run from current entry to end of file +with `HurlRunnerToEnd` command. + + TOGGLE MODE ~ Run `HurlToggleMode` command to toggle between split and popup mode.