Skip to content

Commit

Permalink
revert: revert to find verb instead of treesitter parser
Browse files Browse the repository at this point in the history
  • Loading branch information
jellydn committed Mar 13, 2024
1 parent e76d0c0 commit 1bb1106
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/hurl/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ function M.setup()

-- Run request at current line if there is a HTTP method
utils.create_cmd('HurlRunnerAt', function(opts)
local result = http.find_hurl_entry_positions_in_buffer()
local result = http.find_http_verb_positions_in_buffer()
if result.current > 0 and result.start_line and result.end_line then
utils.log_info(
'hurl: running request at line ' .. result.start_line .. ' to ' .. result.end_line
Expand Down Expand Up @@ -399,7 +399,7 @@ function M.setup()
utils.create_cmd('HurlVerbose', function(opts)
-- It should be the same logic with run at current line but with verbose flag
-- The response will be sent to quickfix
local result = http.find_hurl_entry_positions_in_buffer()
local result = http.find_http_verb_positions_in_buffer()
if result.current > 0 and result.start_line and result.end_line then
utils.log_info(
'hurl: running request at line ' .. result.start_line .. ' to ' .. result.end_line
Expand Down

0 comments on commit 1bb1106

Please sign in to comment.