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
delete_hidden_buffers
I have looked into #18, and set delete_hidden_buffers to false and delete_buffers to true. But the behaviour still persists regardless. My config:
false
delete_buffers
true
local possess_status_ok, possession = pcall(require, "possession") if not possess_status_ok then vim.notify("Unable to require possession") return end possession.setup { autosave = { current = true }, commands = { save = 'SSave', load = 'SLoad', delete = 'SDelete', list = 'SList', close = 'SClose', show = 'SShow', migrate = 'SMigrate', }, delete_hidden_buffers = false, -- Remove the deletion of hidden buffers without windows delete_buffers = true, -- Delete all buffers before loading another session } -- Telescope integrations local tele_status_ok, telescope = pcall(require, "telescope") if not tele_status_ok then vim.notify("Unable to require telescope for possession plugin") return end telescope.load_extension('possession')
The text was updated successfully, but these errors were encountered:
Your configuration is missing the plugins key, you should use:
plugins
possession.setup { autosave = { current = true }, commands = { save = 'SSave', load = 'SLoad', delete = 'SDelete', list = 'SList', close = 'SClose', show = 'SShow', migrate = 'SMigrate', }, plugins = { delete_hidden_buffers = false, -- Remove the deletion of hidden buffers without windows delete_buffers = true, -- Delete all buffers before loading another session }, }
I might have forgotten to add this when commenting on #18. Please check https://github.com/jedrzejboczar/possession.nvim#configuration and possession.txt for reference.
Sorry, something went wrong.
Sorry, for the oversight. Including the plugins fixes the issue. Thanks for developing this awesome plugin
No branches or pull requests
I have looked into #18, and set
delete_hidden_buffers
tofalse
anddelete_buffers
totrue
. But the behaviour still persists regardless.My config:
The text was updated successfully, but these errors were encountered: