telescope-project.nvim icon indicating copy to clipboard operation
telescope-project.nvim copied to clipboard

Added the possibility to change the default mappings

Open bh-schmidt opened this issue 1 year ago • 0 comments

Allowed the users to override the default mappings.

Example:

local project_actions = require("telescope._extensions.project.actions")

require('telescope').setup {
  extensions = {
    project = {
      mappings = {
        i = {
          ['<c-r>'] = project_actions.rename_project
        }
      }
    }
  }
}

bh-schmidt avatar Jul 03 '24 16:07 bh-schmidt