itegebo
itegebo
+1 Indeed. It actually took me a while to realize what was going on when restarts weren't happening as I'd expect. During certain phases of development, one is creating and/or...
I created a branch to experiment with this feature. It will now rescan the watched items, but will not restart if only a new file is placed in one of...
FWIW, adding Clojure's sources for 1.8 works for me: `:profiles {:dev {:dependencies [[org.clojure/clojure "1.8.0" :classifier "sources"]]}}`
I also sought to run some python from a shell script that tried to set the virtualenv, it failed similarly. I found that I needed to do the following first...
To clarify, I meant a lexer created by JFlex using a separate (hand-made) *.flex file rather than one generated from Grammar-Kit's BNF.
Naively, I would have thought it possible for Grammar-Kit to expose the requirements of any lexer that's going to work with it. Thus, if someone has a separately defined lexer...
> "JFlex lexer" can stand for 3 different entities: a flex file, a java file, a class file. How exactly the delegation to a JFlex lexer could look like in...