diff --git a/.config/nvim/lua/plugins/mappings.lua b/.config/nvim/lua/plugins/mappings.lua index 58966312..955a2e7a 100755 --- a/.config/nvim/lua/plugins/mappings.lua +++ b/.config/nvim/lua/plugins/mappings.lua @@ -149,9 +149,6 @@ local hop_hint = require('hop.hint') vim.keymap.set('', 'f', function() hop.hint_char1({ -vim.keymap.set('', 'F', function() - hop.hint_char1({ - direction = hop_hint.HintDirection.BEFORE_CURSOR, current_line_only = true, }) end) @@ -164,15 +161,6 @@ end, { desc = 'HopChar Forwards', }) -vim.keymap.set('', ';F', function() - hop.hint_char1({ - direction = hop_hint.HintDirection.BEFORE_CURSOR, - current_line_only = false, - }) -end, { - desc = 'HopChar Backwards', -}) - vim.keymap.set('', ';l', 'HopLineStart') vim.keymap.set('', ';s', 'HopPattern') vim.keymap.set('', ';;', 'HopWord')