Skip to content

Commit

Permalink
fix(nvim): new trouble+telescope mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
codepuncher committed Jun 10, 2024
1 parent fe89738 commit 40608eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nvim/lua/plugins/configs/telescope.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ end

local actions = require('telescope.actions')
local actions_state = require('telescope.actions.state')
local trouble = require('trouble.providers.telescope')
local trouble = require('trouble.sources.telescope')

local M = {}

Expand Down Expand Up @@ -35,8 +35,8 @@ telescope.setup({
},
theme = 'dropdown',
mappings = {
i = { ['<c-t>'] = trouble.open_with_trouble },
n = { ['<c-t>'] = trouble.open_with_trouble },
i = { ['<c-t>'] = trouble.open },
n = { ['<c-t>'] = trouble.open },
},
},
pickers = {
Expand Down

0 comments on commit 40608eb

Please sign in to comment.