We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is the delete action still working as expected? With my lazy.nvim setup:
{ "MattesGroeger/vim-bookmarks", config = function() vim.g.bookmark_no_default_key_mappings = 1 vim.g.bookmark_save_per_working_dir = 1 vim.g.bookmark_sign = "" vim.keymap.set('n', '<Leader><Leader>', '<Plug>BookmarkToggle', { desc = "Bookmark toggle" }) vim.keymap.set('n', '<Leader>bi', '<Plug>BookmarkAnnotate', { desc = "Bookmark annotate" }) vim.keymap.set('n', '<Leader>bj', '<Plug>BookmarkNext', { desc = "Bookmark next" }) vim.keymap.set('n', '<Leader>bk', '<Plug>BookmarkPrev', { desc = "Bookmark previous" }) end, }, "tom-anders/telescope-vim-bookmarks.nvim", { 'nvim-telescope/telescope.nvim', version = '0.1.1', dependencies = { 'nvim-lua/plenary.nvim', "MattesGroeger/vim-bookmarks", "tom-anders/telescope-vim-bookmarks.nvim"}, config = function() local telescope = require('telescope') telescope.setup() -- vim_booksmarks telescope.load_extension('vim_bookmarks') vim.keymap.set('n', 'ba', telescope.extensions.vim_bookmarks.all, { desc = "Show [b]ookmarks in [a]ll files" }) vim.keymap.set('n', 'bc', telescope.extensions.vim_bookmarks.current_file, { desc = "Show [b]ookmarks in [c]urrent file" }) local bookmark_actions = require('telescope').extensions.vim_bookmarks.actions require('telescope').extensions.vim_bookmarks.all { attach_mappings = function(_, map) map('n', 'dd', bookmark_actions.delete_selected_or_at_cursor) return true end } end, },
Pressing dd in normal mode in Telescope does not have any action.
dd
The text was updated successfully, but these errors were encountered:
Same here, doesn't seem to work with neither delete_selected_or_at_cursor nor with just delete_selected
delete_selected_or_at_cursor
delete_selected
Sorry, something went wrong.
No branches or pull requests
Is the delete action still working as expected? With my lazy.nvim setup:
Pressing
dd
in normal mode in Telescope does not have any action.The text was updated successfully, but these errors were encountered: