Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 15, 2024
1 parent 718562d commit 8126c72
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lua/hurl/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,10 @@ local function execute_hurl_cmd(opts, callback)
_HURL_GLOBAL_CONFIG.global_vars = _HURL_GLOBAL_CONFIG.global_vars or {}
_HURL_GLOBAL_CONFIG.global_vars[capture_name] = captured_value
utils.log_info('hurl: captured variable ' .. capture_name .. ' set to ' .. captured_value)
utils.notify('hurl: captured variable ' .. capture_name .. ' set to ' .. captured_value, vim.log.levels.INFO)
utils.notify(
'hurl: captured variable ' .. capture_name .. ' set to ' .. captured_value,
vim.log.levels.INFO
)
else
utils.log_error('hurl: failed to capture variable ' .. capture_name)
utils.notify('hurl: failed to capture variable ' .. capture_name, vim.log.levels.ERROR)
Expand Down

0 comments on commit 8126c72

Please sign in to comment.