From 42fb4b5b2a168be74b77c7869024836055c5f16f Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Sat, 7 Feb 2026 14:01:22 -0500 Subject: [PATCH] fix(ci): run pre-commit --- plugin/http-codes.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugin/http-codes.lua b/plugin/http-codes.lua index b101269..b1f4490 100644 --- a/plugin/http-codes.lua +++ b/plugin/http-codes.lua @@ -7,4 +7,6 @@ vim.api.nvim_create_user_command('HTTPCodes', function() require('http-codes').pick() end, {}) -vim.keymap.set('n', '(http-codes-pick)', function() require('http-codes').pick() end, { desc = 'Pick HTTP status code' }) +vim.keymap.set('n', '(http-codes-pick)', function() + require('http-codes').pick() +end, { desc = 'Pick HTTP status code' })