NotebookNavigator.nvim icon indicating copy to clipboard operation
NotebookNavigator.nvim copied to clipboard

A neovim plugin to navigate and execute code cells

Results 25 NotebookNavigator.nvim issues
Sort by recently updated
recently updated
newest added

Hydra will check that the key mappings are consistent with they hint box that it shows. If they are not everything breaks down. This means that if a key mapping...

bug
enhancement

Another cool feature that Neovim offers that would give a Jupyter-like experience would be to quickly fold/unfold individual or all cells. I've played with an implementation of this [here](https://github.com/cnrrobertson/nvim-repl-cells/blob/main/lua/nvim-repl-cells/cells.lua#L310-L377) that...

Wonderful plugin! Is that possible to move the pop up menu when in hydra mode to the top of the screen? Right now, the pop up is blocking the latest...

## New Feature: Run Cells Above (Revert README.md to raw Repo content) This pull request introduces a new feature `run_cells_above` to the NotebookNavigator plugin. This function allows users to execute...

I'm using iron.nvim as my repl and I have configured it to ignore blank lines, it works if I use iron.nvim's api visual_send but not with the run_cell from NotebookNavigator.nvim's...

Dependency from mini.comment should be removed. Neovim has now [builtin comment support](https://neovim.io/doc/user/various.html#commenting).

From the docs: > The currently supported REPLs are: > > [iron.nvim](https://github.com/Vigemus/iron.nvim), > [toggleterm.nvim](https://github.com/akinsho/toggleterm.nvim) or > [molten-nvim](https://github.com/benlubas/molten-nvim) > > The latter are automatically detected. I have both iron and molten...

Due to the `end_line+1` in line 53 of `reple.lua` ```lua local ok, _ = pcall(vim.fn.MoltenEvaluateRange, start_line, end_line+1) ``` MoltenEvaluateRange always include an extra cell marker, see screenshot below ![image](https://github.com/GCBallesteros/NotebookNavigator.nvim/assets/33592421/7c09b787-6929-4bcc-a1af-828a4b019e45) I...

[nuvyklack/hydra.nvim](https://github.com/anuvyklack/hydra.nvim) is unmaintained, [nvimtools/hydra.nvim](https://github.com/nvimtools/hydra.nvim) is the maintained fork. The talking about maintaining status : https://github.com/anuvyklack/hydra.nvim/issues/101

Following #35, I think we should remove the code that delete spaces and indents altogether. Leading spaces are important for languages like Python. If one wants to remove trailing spaces,...