Skip to content

Commit

Permalink
docs: add usage for HurlRunnerToEnd command
Browse files Browse the repository at this point in the history
  • Loading branch information
jellydn committed Oct 22, 2024
1 parent 94f50f2 commit 861baca
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ Add the following configuration to your Neovim setup with [lazy.nvim](https://gi
{ "<leader>A", "<cmd>HurlRunner<CR>", desc = "Run All requests" },
{ "<leader>a", "<cmd>HurlRunnerAt<CR>", desc = "Run Api request" },
{ "<leader>te", "<cmd>HurlRunnerToEntry<CR>", desc = "Run Api request to entry" },
{ "<leader>tE", "<cmd>HurlRunnerToEnd<CR>", desc = "Run Api request from current entry to end" },
{ "<leader>tm", "<cmd>HurlToggleMode<CR>", desc = "Hurl Toggle Mode" },
{ "<leader>tv", "<cmd>HurlVerbose<CR>", desc = "Run Api in verbose mode" },
-- Run Hurl request in visual mode
Expand Down Expand Up @@ -210,6 +211,10 @@ Place your cursor on the line you want to run to that entry and press `<leader>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.
Expand Down

0 comments on commit 861baca

Please sign in to comment.