- OS: macOS Tahoe Public Beta
- Neovim Version: v0.12.0-dev-1145+g9898327bd7
- Python Version: 3.13
- Python is installed with:
uv venv
- Health checks
`:checkhealth molten`
==============================================================================
molten: ✅
molten-nvim ~
- ✅ OK NeoVim >=0.9
- ✅ OK Python >=3.10
- ✅ OK Python module pynvim found
- ✅ OK Python module jupyter-client found
- ✅ OK Python module cairosvg found
- ✅ OK Python module pnglatex found
- ✅ OK Python module plotly found
- ✅ OK Python module kaleido found
- ✅ OK Python module pyperclip found
- ✅ OK Python module nbformat found
- ✅ OK Python module pillow found
`:checkhealth provider` (the python parts)
Python 3 provider (optional) ~
- Using: g:python3_host_prog = "~/venvs/nvim/bin/python3"
- Executable: /Users/sghuang/venvs/nvim/bin/python3
- Python version: 3.13.7
- pynvim version: 0.5.2
- ✅ OK Latest pynvim is installed.
Python virtualenv ~
Description
This plugins has a few unexpected behaviors when loaded through Lazy.nvim.
- All commands show up in cmd line completion, though
molten-nvim is not loaded in the Lazy dashboard, i.e. Molten doesn't respect Lazy.nvim loading sequence.
- If a command is specified in the
cmd field in LazySpec, that command will emit an error: E492: Not an editor command: MolteXXX (not just for the first time, it remains broken). After the command is attempted for the first time, Molten remains unloaded in the Lazy dashboard.
- User can't use
require("molten").setup(opts) to load this plugin.
Reproduction Steps
My molten config is as follows:
{
"benlubas/molten-nvim",
build = ":UpdateRemotePlugins",
cmd = { "MoltenInit", "MoltenInfo" }, -- comment/uncomment this line, compare what happens
init = function()
vim.g.molten_image_provider = "image.nvim"
vim.g.molten_virt_text_output = true -- output always shown
end,
},
Comment and uncomment the line specified, and see what happens when calling these two commands, and run :Lazy to examine the status of molten-nvim.
Expected Behavior
- No command completion should be available before Molten is loaded, if
cmd key is not specified.
- Only the commands specified in
cmd should show up in completion before Molten is loaded.
- The commands specified in
cmd should function normally, i.e. first invocation will load molten, and immediately handover the command execution to Molten.
- Users should be able to use
require("molten").setup(opts) to load this plugin, this is quite conventional.
uv venv`:checkhealth molten`
`:checkhealth provider` (the python parts)
✅ OK no $VIRTUAL_ENV
Description
This plugins has a few unexpected behaviors when loaded through Lazy.nvim.
molten-nvimis not loaded in the Lazy dashboard, i.e. Molten doesn't respect Lazy.nvim loading sequence.cmdfield in LazySpec, that command will emit an error:E492: Not an editor command: MolteXXX(not just for the first time, it remains broken). After the command is attempted for the first time, Molten remains unloaded in the Lazy dashboard.require("molten").setup(opts)to load this plugin.Reproduction Steps
My molten config is as follows:
{ "benlubas/molten-nvim", build = ":UpdateRemotePlugins", cmd = { "MoltenInit", "MoltenInfo" }, -- comment/uncomment this line, compare what happens init = function() vim.g.molten_image_provider = "image.nvim" vim.g.molten_virt_text_output = true -- output always shown end, },Comment and uncomment the line specified, and see what happens when calling these two commands, and run
:Lazyto examine the status ofmolten-nvim.Expected Behavior
cmdkey is not specified.cmdshould show up in completion before Molten is loaded.cmdshould function normally, i.e. first invocation will load molten, and immediately handover the command execution to Molten.require("molten").setup(opts)to load this plugin, this is quite conventional.