From 861bacadb309dfd0a2b644955ed519fdd30399b5 Mon Sep 17 00:00:00 2001 From: Dung Huynh Duc Date: Tue, 22 Oct 2024 22:56:17 +0800 Subject: [PATCH] docs: add usage for HurlRunnerToEnd command --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index e61a726..304bbbb 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,7 @@ Add the following configuration to your Neovim setup with [lazy.nvim](https://gi { "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 @@ -210,6 +211,10 @@ Place your cursor on the line you want to run to that entry and press `t 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.