From 92001c6537b9ad800d9948311b6d153dc271d3bc Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Sun, 16 Jun 2024 23:04:49 +0200 Subject: [PATCH] fixed keymaps for surround --- lua/plugins/mini-surround.lua | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lua/plugins/mini-surround.lua b/lua/plugins/mini-surround.lua index c0b5168..d8700ba 100644 --- a/lua/plugins/mini-surround.lua +++ b/lua/plugins/mini-surround.lua @@ -4,13 +4,13 @@ return { config = function() require('mini.surround').setup({ mappings = { - add = 'aa', -- Add surrounding in Normal and Visual modes - delete = 'ad', -- Delete surrounding - find = 'af', -- Find surrounding (to the right) - find_left = 'aF', -- Find surrounding (to the left) - highlight = 'ah', -- Highlight surrounding - replace = 'ar', -- Replace surrounding - update_n_lines = 'an', -- Update `n_lines` + add = 'aa', -- Add surrounding in Normal and Visual modes + delete = 'ad', -- Delete surrounding + find = 'af', -- Find surrounding (to the right) + find_left = 'aF', -- Find surrounding (to the left) + highlight = 'ah', -- Highlight surrounding + replace = 'ar', -- Replace surrounding + update_n_lines = 'an', -- Update `n_lines` suffix_last = 'l', -- Suffix to search with "prev" method suffix_next = 'n', -- Suffix to search with "next" method