Is there a way to use the g:workspace_autosave_ignore setting to disable buffers that have a blank/empty filetype? I've tried using an empty string like this:
let g:workspace_autosave_ignore = ['gitcommit', '']
However, this seems to prevent the workspace from loading when re-launching nvim. That is, no files are loaded when launching nvim without arguments in my workspace directory.
Is there a way to use the
g:workspace_autosave_ignore
setting to disable buffers that have a blank/emptyfiletype
? I've tried using an empty string like this:However, this seems to prevent the workspace from loading when re-launching
nvim
. That is, no files are loaded when launchingnvim
without arguments in my workspace directory.