Karol Kuczmarski
Karol Kuczmarski
The `unicode-width` crate determines the character width of Unicode strings, and should most likely be used for the line breaking algo. It's unclear if it can completely help with the...
It is probably be a bug in Cargo but noting it here for posterity. Rebuilding the library crate always triggers a rebuild of certain dependencies: ``` $ cargo build -p...
In addition to `--preload`, `--watch` would set up an inotify subscription to automatically load & cache any templates/fonts put into relevant folders. (`--watch` would not require `--preload`, but would imply...
Currently, the `regex` generator offers only limited support for capture groups: it just ignores them :) To enhance this, the syntactic elements `\1`, `\2`, and so on, need to be...
The current implementation of regex-based string generator does not perform reversal on negated character sets, i.e. `[^...]` constructs such as `[^a-zA-z]` (not a letter). We should add that as it...
It could be possible to specify how an arbitrary object of a class can be generated by including the __arbitrary__ attribute within a class. This attribute would specify (as dict...
LoDash/Underscore is a widely used Javascript library with some helper functions. Many of them could be translated directly to rush. - [ ] `chunk` (for arrays and strings) - [x]...
The obvious ones: - [ ] `lower` - [ ] `upper` and also: - [ ] `camel` (camelCase) - [ ] `cap` (Capitalize) - [ ] `snake` (snake_case)
Most of the actually portable ones are already present in some form, but there a few remaining. Here's a list: - [ ] `range` - [ ] `zip` (producing array...