Skip to content

Commit

Permalink
Merge main into sweep/fix-whitespace-trailing-spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Mar 1, 2024
2 parents ba58e0d + b1c4516 commit 3e85766
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lua/hurl/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -416,8 +416,10 @@ function M.setup()
vim.cmd('copen')
end)
else
utils.log_info('hurl: not HTTP method found in the current line' .. result.start_line)
utils.notify('hurl: no HTTP method found in the current line', vim.log.levels.INFO)
if result then
utils.log_info('hurl: not HTTP method found in the current line' .. result.start_line)
utils.notify('hurl: no HTTP method found in the current line', vim.log.levels.INFO)
end
end
end, { nargs = '*', range = true })

Expand Down

0 comments on commit 3e85766

Please sign in to comment.