KV Le
KV Le
> First of all, is there a reason for using custom autocommand instead of default `MiniSessions.config.autowrite`? It does [almost exactly that](https://github.com/echasnovski/mini.nvim/blob/ee7c02297cf95cba07f8bf8da3ecf99337a1c15e/lua/mini/sessions.lua#L81). I wanted to have a session that is always...
A pretty good working solution for this I found was to have a pre write hook that dismisses all notifications like so: ```lua local minisessions = require("mini.sessions") minisessions.setup({ hooks =...
Thanks for the tip! What I was doing before was quite... not great 🤣 ```lua local close_bad_buffers = function() local buffer_infos = vim.split(vim.api.nvim_exec("buffers!", true), "\n") local bad_buffers = { "NvimTree",...
Oh and also for anyone reading this issue and is suffering from the same problem, here is my new function which might help ```lua local close_bad_buffers = function() require("zen-mode").close() vim.notify.dismiss({...
I see, thanks for checking the issue out. Should I close this then?
Ah I see, should I just close this issue then?
Do you have a link to a tutorial for pre-compiling xformers? I could take a shot at it but if not, I could wait.
It seems like running pip install doesn't work. Here is the output: ``` Looking in indexes: https://pypi.org/simple, https://us-python.pkg.dev/colab-wheels/public/simple/ Collecting xformers Cloning https://github.com/facebookresearch/xformers (to revision 51dd119) to /tmp/pip-install-h5wv2l8s/xformers_88043ec6312243359ba5caa291a06227 Running command git...
It seems like it's all fixed now. I don't need my the custom hooks any longer. Thanks for the update!
I had this exact same issue though it was due to a specific set of circumstances. I am running Neovim with the Markdown Treesitter grammar. However, I realized that treesitter's...