Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
15 changes: 15 additions & 0 deletions tests/test_nb.py
Original file line number Diff line number Diff line change
@@ -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")