diff --git a/README.md b/README.md index 9245427..f35014d 100644 --- a/README.md +++ b/README.md @@ -176,8 +176,9 @@ to `false`. See issue for more details. ## Dependencies The currently supported REPLs are: -- [iron.nvim](https://github.com/Vigemus/iron.nvim), -- [toggleterm.nvim](https://github.com/akinsho/toggleterm.nvim) or +- [iron.nvim](https://github.com/Vigemus/iron.nvim) +- [toggleterm.nvim](https://github.com/akinsho/toggleterm.nvim) + - Use [PR 591](https://github.com/akinsho/toggleterm.nvim/pull/591) to use the `use_bracketed_paste` in the `repl_args`. - [molten-nvim](https://github.com/benlubas/molten-nvim) The latter are automatically detected. Support for others like `conjure` diff --git a/tests/test_nb.py b/tests/test_nb.py new file mode 100644 index 0000000..63acdab --- /dev/null +++ b/tests/test_nb.py @@ -0,0 +1,15 @@ +# %% +# First cell +print("something") + +# %% +# Cell with a function +def afun(a): + if a == 0: + print("Zero") + else: + print("Non-zero") + + +# %% +print("done")