Since this project hasn't been updated in a long time, I'm posting this as documentation for anyone else looking for how to use it to get a Fennel REPL in Sublime Text:
Add this to your Packages/User/Default.sublime-commands file:
{
"caption": "SublimeREPL: Fennel",
"command": "repl_open",
"args": {
"type": "subprocess",
"encoding": "utf8",
"external_id": "fennel",
"cmd": {"osx": ["fennel", "--repl"]},
"cwd": "$folder",
"cmd_postfix": "\n",
"syntax": "Fennel.sublime-syntax",
}
}
Since this project hasn't been updated in a long time, I'm posting this as documentation for anyone else looking for how to use it to get a Fennel REPL in Sublime Text:
Add this to your
Packages/User/Default.sublime-commandsfile:{ "caption": "SublimeREPL: Fennel", "command": "repl_open", "args": { "type": "subprocess", "encoding": "utf8", "external_id": "fennel", "cmd": {"osx": ["fennel", "--repl"]}, "cwd": "$folder", "cmd_postfix": "\n", "syntax": "Fennel.sublime-syntax", } }