Closed
Description
Hello, I use now your plugin as primary workspace jumping, and it works very well, congrats, and thanks !
It seems that keep_insert
is not working, this is my telescope config and my workspace one:
use({
"nvim-telescope/telescope.nvim",
config = function()
local actions = require("telescope.actions")
require("telescope").setup({
defaults = require("telescope.themes").get_ivy({
winblend = 10,
mappings = {
i = {
["<C-j>"] = actions.move_selection_next,
["<C-k>"] = actions.move_selection_previous,
["<C-q>"] = actions.send_selected_to_qflist + actions.open_qflist,
["<C-a>"] = actions.send_to_qflist + actions.open_qflist,
},
n = {
["<C-q>"] = actions.send_selected_to_qflist + actions.open_qflist,
["<C-a>"] = actions.send_to_qflist + actions.open_qflist,
},
},
}),
extensions = {
["ui-select"] = require("telescope.themes").get_cursor(),
workspaces = {
keep_insert = true,
},
},
})
require("telescope").load_extension("ui-select")
require("telescope").load_extension("fzf")
require("telescope").load_extension("workspaces")
end,
requires = {
"nvim-lua/popup.nvim",
"nvim-telescope/telescope-ui-select.nvim",
"nvim-telescope/telescope-fzf-native.nvim",
"natecraddock/workspaces.nvim",
},
})
use({
"natecraddock/workspaces.nvim",
config = function()
require("workspaces").setup({
hooks = {
open = { "Telescope find_files" },
},
})
end,
})
PS: not related to this issue, but I don't feel like creating an other issue for this:
Would it be possible to provide vim.notify
messages after a WorkspaceAdd
, WorkspaceRemove
, WorkspaceList (if no workspaces)
?