Maksim Zimaliev

Results 8 comments of Maksim Zimaliev

You probably need to catch `runUI checks vis body`, e.g. create `ref` in ```purescript -- somewhere on callsite halogenIORef Eff _ Unit go viz r = HA.runHalogenAff do io do...

How about this? ```purescript className :: String -> Maybe ClassName className = Just

Sorry, I meant evaluation time and `ClassName` monoid w/o `Maybe` ```purescript [ ClassName "" ] =evaluates=> "" [ ] =evaluates=> "" [ ClassName "foo", ClassName "bar" ] =evaluates=> "foo bar"...

@safareli This is even better! :+1:

It works this way now ```purescript import DOM.Classy.Event (toEvent, preventDefault) data Query a = DoSomething a | PreventDefault Event (Query a) -- somewhere in render function onClick \e -> Just...

I'd leave and change the header to something like `Add preventDefault/stopPropagation etc to docs" or something :)

Ps-routing from contrib uses semiring. Maybe move it to contrib or even make it part of routing lib, if noone needs it?

According to [this](https://github.com/clojure-lsp/clojure-lsp/blob/master/lib/test/clojure_lsp/shared_test.clj#L58-L59) `filename->uri` returns paths with the form like `zipfile:///C:/whateveer/some.jar::path_to_clj.clj`. Pi_zip [documentation](https://neovim.io/doc/user/pi_zip.html) states that file paths should be `zipfile://C:/whatever/som.jar::path_to_clj.clj`. This is the problem in my case, where neovim can't...