Let the labeling proc block accept a single word list string #310
Labels
area - proc blocks
Procedural blocks linked to by the compiled Rune
category - intuitiveness
Something which may be unintuitive to the user or affect ergonomics
category - performance
Something that impacts runtime performance.
effort - easy
This should be pretty simple
good first issue
Good for newcomers
One of the hackers on Discord caused the Rust compiler to OOM because they pasted 99,000 labels into their Runefile.
Ideally people would use resources for something like this, but the labeling proc block only accepts
Vec<&'a str>
(i.e. a list of strings). We should give it aset_word_list()
method which takes one long string and doesself.labels = word_list.lines().collect()
.The text was updated successfully, but these errors were encountered: