Lucy Wang

Results 15 issues of Lucy Wang

During TDD people very frequently want to: * only run a specific test namespace * skip a specific test namespace * only run a specific test case * skip a...

After this [commit](https://github.com/lilactown/helix/commit/8d6b0353#diff-6afd5f7e77eb4f8cfa06b894fd1f9147R159), when the `:value` prop is `nil`, helix would replace it with `undefined`. But in react components like `input` etc. with `:value nil` is treated as a controlled...

I noticed that python's [pyright lsp](https://github.com/emacs-lsp/lsp-pyright) only fires up one instance for multiple python projects, would it make sense to have a similar feature in clojure-lsp? Some related quote from...

enhancement
good first issue

In the section `The track function` of the doc, it says: ```markdown The first argument to track should be a named function, i.e not an anonymous one. ``` But after...

documentation

Current controller code compares the whole map old controller with new controller ```clojure changed-controllers (->> (map (fn [old new] ;; different controllers, or params changed (if (not= old new) {:old...

with the current code, when using h5 history, there is no way to push state to a url like "/path#foo" because `reitit.frontend.history/push-state` doesn't take that into consideration. Is that correct?...

# problem When I try to plot some pretty large dataset with oz, the delay of sending the data to the browser with `oz/view!` until it is rendered could be...

Given the two adjcent UL and OL: ```md * abc 1. def ``` When the cursor is in the second line and I type the tab key, the OL should...

* support `:cookie-attrs` for setting csrf cookie attribute like path, http-only, etc. * add support for rotating the csrf token, which shall be done after login succeeds TODO: - [x]...

Whenever I wake up my computer from a long (3h+) sleep, the cpu usage for all clojure java processes (either launched by lein or shadow-cljs) would skyrocket for a while,...

Bug
Help Wanted