ObsidianChickenz
ObsidianChickenz
A discovery: I can't run `:Alpha` with ANY other command. My hunch is that any time Neovim sees anything after the `:Alpha` command, it registers it as an argument to...
Since `:Alpha` actually just runs `:lua require'alpha'.start(false)`, I think that Neovim is trying to run `:bd! #` (or any other command afterwards) as Lua instead of Vimscript. I'll see if...
This can be solved by running `:execute "Alpha"` instead.
I found that the issue exists in NvimTree as well, so it may be an issue with Neovim, not this plugin in particular.
Since this repository is seemingly dead, I'm closing.
Don't know how I didn't see this answer until now. Thanks!