cljfx

https://github.com/cljfx/cljfx
pbaille 2021-04-06T09:25:35.071800Z

I'm supposed to implement a code editor (single file for now) in javafx, currently I'm trying to use a WebView with codemirror. I'm wondering if it seems like a good option to you or if I should try something else first.

vlaaad 2021-04-06T09:37:02.073Z

Sounds fun! I would use monaco (that’s used in vs code) — https://github.com/Microsoft/monaco-editor — but I don’t know much about codemirror

pbaille 2021-04-06T10:00:56.073300Z

nice I will take a look ! thanks

pbaille 2021-04-06T10:16:09.074300Z

Is there any examples out there of a minimal cljfx project with clojurescript webviews ? Does it seems to be a bad idea for some reasons ?

yunior 2021-04-06T15:36:20.074500Z

Maybe this one can help you: https://github.com/cljfx/cljfx/blob/master/examples/e37_web_view_local_content.clj

yunior 2021-04-06T15:37:10.075100Z

There are other examples in the same folder. Just in case you need something else.