Skip to content

Commit

Permalink
feat(parser): verbosity on fail
Browse files Browse the repository at this point in the history
This closed #45.
gorillamoe committed Jul 11, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent c412353 commit 08479e4
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/_coverpage.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# kulala.nvim <small>1.6.2</small>
# kulala.nvim <small>1.6.3</small>

> A minimal 🤏 HTTP-client 🐼 interface 🖥️ for Neovim ❤️.
2 changes: 1 addition & 1 deletion lua/kulala/globals/init.lua
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ local FS = require("kulala.utils.fs")

local M = {}

M.VERSION = "1.6.2"
M.VERSION = "1.6.3"
M.UI_ID = "kulala://ui"
M.HEADERS_FILE = FS.get_plugin_tmp_dir() .. "/headers.txt"
M.BODY_FILE = FS.get_plugin_tmp_dir() .. "/body.txt"
1 change: 0 additions & 1 deletion lua/kulala/parser/init.lua
Original file line number Diff line number Diff line change
@@ -414,7 +414,6 @@ function M.parse()
table.insert(res.cmd, "curl")
table.insert(res.cmd, "-s")
table.insert(res.cmd, "--show-error")
table.insert(res.cmd, "--fail")
table.insert(res.cmd, "-D")
table.insert(res.cmd, PLUGIN_TMP_DIR .. "/headers.txt")
table.insert(res.cmd, "-o")
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kulala.nvim",
"version": "1.6.2",
"version": "1.6.3",
"scripts": {
"docs": "docsify serve docs"
},

0 comments on commit 08479e4

Please sign in to comment.