1
0
Fork 0
dotfiles/home/config/nvim/nifoc/repl.fnl

43 lines
1.1 KiB
Fennel

(let [mod {}
wezterm (require :wezterm)]
(fn exe [bin] (vim.fn.exepath bin))
(fn open-split [program-fn]
(let [args [:cli :split-pane :--bottom :--percent :30 "--"]
program (program-fn)]
(each [_ value (ipairs program)]
(table.insert args value))
(wezterm.exec args)))
(local elixir #[(exe :iex)])
(local erlang #[(exe :erl)])
(local fennel #[(exe :fennel) :--repl])
(local fish #[(exe :fish)])
(local java #[(exe :jshell)])
(local javascript #[(exe :node)])
(local nix #[(exe :nix) :repl])
(local ruby #[(exe :irb)])
(local typescript #[(exe :node)])
;; Map filetype to REPL
(local repl-map {: elixir
: erlang
: fennel
: fish
: java
: javascript
: nix
: ruby
: typescript})
(fn mod.open-shell []
(let [shell (. repl-map :fish)]
(open-split shell)))
(fn mod.open-repl []
(let [ft vim.bo.filetype
repl (. repl-map ft)]
(when (not= repl nil)
(open-split repl))))
mod)