Ryan Smith

Results 10 issues of Ryan Smith

I was recently having to write a rather complex set of threading code with `as->` and it occurred to me that it would be useful if in an `as->` sexp,...

Currently clojure-mode appears to be treating `dec'` as the symbol `dec` with a `'` following it. This is made most obvious when I call `cider-find-var` on `dec'` at it finds...

bug

Some functions, like `d/alt` are designed to handle deferrables as arguments. `let-flow` shouldn't wait on args to functions like these to have been resolved before invoking the function. With this...

Without this, the following code can randomly pick "cat" or "dog" (though "dog" is far more common, making this bug hard to detect or reproduce). ```clj @(let-flow [a "cat" a...

In order to use the latest version, the minimum lein version needs to be updated as well, or we run into a compilation issue of tools.deps.alpha: ``` clojure.lang.Compiler$CompilerException: java.lang.RuntimeException: Unable...

The `Fill translations` menu option claims to fill in `Mean Words` and other classifier fields, but will only actually do so if there's a meaning field that needs updating, otherwise...

# Description When doing bulk "Fill incomplete readings and colors" of an expression like "老师是中国人" when the `Pinyin` field is already filled to "Lǎo shī shì Zhōng guórén." will cause...

```clojure regal/*flavor* => :java9 (regal-parse/parse #"\p{InCombiningDiacriticalMarks}+") => [:+ [:lambdaisland.regal.parse/not-implemented [:UnicodeCharacterClass "p" "{InCombiningDiacriticalMarks}"]]] (regal-parse/parse #"\p{Alpha}") => [:lambdaisland.regal.parse/not-implemented [:UnicodeCharacterClass "p" "{Alpha}"]] (regal-parse/parse #"\p{InGreek}") => [:lambdaisland.regal.parse/not-implemented [:UnicodeCharacterClass "p" "{InGreek}"]] ```

```clojure (regal-parse/parse #"(?i)t{3}") => [:cat [:lambdaisland.regal.parse/not-implemented [:MutatingMatchFlags [:MatchFlagsExpr "i"]]] [:repeat "t" 3]] ```