vim.api.nvim_buf_set_keymap(0, "n", "<localleader>j", "<Plug>JupyterExecute", {})
# %%
import numpy as np
import scipy as sp
# %%
print("Hello World")
Putting my cursor on import and hitting <localleader>j will cause the second cell to execute. What could be the problem?