refactor(nvim)!: remove hop backwards search

This commit is contained in:
Price Hiller 2022-07-28 09:26:51 -05:00
parent 1289c40425
commit 2c9c5c1415

View File

@ -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', '<cmd>HopLineStart<CR>')
vim.keymap.set('', ';s', '<cmd>HopPattern<CR>')
vim.keymap.set('', ';;', '<cmd>HopWord<CR>')