Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gpanders/fennel-repl.nvim
A Fennel REPL that runs in Neovim
https://github.com/gpanders/fennel-repl.nvim
Last synced: 24 days ago
JSON representation
A Fennel REPL that runs in Neovim
- Host: GitHub
- URL: https://github.com/gpanders/fennel-repl.nvim
- Owner: gpanders
- License: mit
- Created: 2021-10-18T23:05:04.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-12-26T16:27:14.000Z (11 months ago)
- Last Synced: 2024-08-03T23:17:34.375Z (3 months ago)
- Language: Fennel
- Size: 84 KB
- Stars: 22
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fennel-repl.nvim
This plugin provides an in-process Fennel REPL in Neovim with complete access
to the Neovim Lua API.## Usage
Use `:FennelRepl` to create a new split with a REPL. For more direct access,
use```lua
require("fennel-repl").open()
```in Lua. The `open()` function takes an optional `opts` table that accepts the
following keys:- `mods`: modifier for window placement (e.g. "vert", "botright", etc.)
- `height`: height of window in rows (if split horizontally)
- `width`: width of window in columns (if split vertically)`open()` returns the buffer number of the repl buffer.
## License
MIT