Jaume Ortolà

Results 71 comments of Jaume Ortolà

The current test wouldn't have prevented this error: https://github.com/languagetool-org/languagetool/commit/9b7c55889e3485fb089ac086161b2dd8b749bf0e The only way to prevent this kind of errors is to require the same regexp in the synthesis match and the...

> Does this have an impact on memory usage at runtime? We need to check it out. The new file adds +323 KB. So, at the very least, that amount....

@esbardu To create an external dependency, you need to do this: - Create a repo (or use the repo where you prepare the dictionaries), and make a structure similar to...

@esbardu It looks good. I will try it locally, and if everything is fine, I will create a new PR with the necessary changes, and I will make a release...

Replaced by https://github.com/languagetool-org/languagetool/pull/10378

> should we be using the same method (adding the tags to multiwords) for all languages? Not necessarily. Here, we are adding "ignore spelling" in the disambiguator. The tags in...

replaced by https://github.com/languagetool-org/languagetool/pull/10335

This [answer](https://github.com/languagetool-org/languagetool/issues/10136#issuecomment-1903903562) is valid here.

If you are using English, the problem is the tokenization. You will need a rule like this one: ``` \p{Ll}+ _ \p{Ll}.* ``` This rule should also work for snake_case_with_multiple_underscores.

Maybe this: ``` ` \p{Ll}+ ` ```