From e0b9d7d2f3d97c6ebb9f9afdb4f1a2edd01a2074 Mon Sep 17 00:00:00 2001 From: Pieterjan <35334552+pieterjan84@users.noreply.github.com> Date: Wed, 24 Apr 2024 09:04:39 +0200 Subject: [PATCH 1/2] Fixed blogpost link Fixed link to https://www.josean.com/posts/7-amazing-cli-tools --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d965a69..56cb4e3 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ You'll also need to install extra cli tools as described in this blog post and video: -✍🏼 Blog Post : [7 Amazing CLI Tools You Won't Be Able To Live Without](https://josean.com/7-amazing-cli-tools) +✍🏼 Blog Post : [7 Amazing CLI Tools You Won't Be Able To Live Without](https://josean.com/posts/7-amazing-cli-tools) 📹 Youtube Video: [7 Amazing CLI Tools You Won't Be Able To Live Without](https://www.youtube.com/mmqDYw9C30I) From c623c76242a9b9f5d5c3717d0c04b618de10a23e Mon Sep 17 00:00:00 2001 From: Marcus Kannicht <27237080+kannicht@users.noreply.github.com> Date: Wed, 24 Apr 2024 10:15:55 +0200 Subject: [PATCH 2/2] Update substitute.lua --- .config/nvim/lua/josean/plugins/substitute.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/nvim/lua/josean/plugins/substitute.lua b/.config/nvim/lua/josean/plugins/substitute.lua index e952b65..b5ff1b6 100644 --- a/.config/nvim/lua/josean/plugins/substitute.lua +++ b/.config/nvim/lua/josean/plugins/substitute.lua @@ -9,9 +9,9 @@ return { -- set keymaps local keymap = vim.keymap -- for conciseness - vim.keymap.set("n", "s", substitute.operator, { desc = "Substitute with motion" }) - vim.keymap.set("n", "ss", substitute.line, { desc = "Substitute line" }) - vim.keymap.set("n", "S", substitute.eol, { desc = "Substitute to end of line" }) - vim.keymap.set("x", "s", substitute.visual, { desc = "Substitute in visual mode" }) + keymap.set("n", "s", substitute.operator, { desc = "Substitute with motion" }) + keymap.set("n", "ss", substitute.line, { desc = "Substitute line" }) + keymap.set("n", "S", substitute.eol, { desc = "Substitute to end of line" }) + keymap.set("x", "s", substitute.visual, { desc = "Substitute in visual mode" }) end, }