siikamiika

Results 25 comments of siikamiika

What I could gather from https://docs.python.org/3/library/ast.html#abstract-grammar ``` | Match(expr subject, match_case* cases) ... match_case = (pattern pattern, expr? guard, stmt* body) pattern = MatchValue(expr value) | MatchSingleton(constant value) | MatchSequence(pattern*...

Not what you're asking for, but if your goal was scanning 完全 from 完っ全に..., you could set "Collapse emphatic character sequences" to "Remove all characters" in settings

I agree that exact text match sometimes has significance. I haven't looked at the code for a while so I am not sure if this is the correct place in...

When processing the extracted `jmdict_english.zip` with the following script ```python import glob import json for file in glob.glob('term_bank*.json'): with open(file) as f: data = json.load(f) for item in data: if...

As far as I know, side mouse buttons cannot be bound to anything but the default action navigating history in all major browsers supported by Yomichan. Main, auxiliary and secondary...

@FooSoft > You could have two data sources; one being from text that is directly pasted in to the extension, and another for remote applications. It would be nice if...

I have added a simple clipboard monitor to the search page along with history tracking (`popstate`/`pushState`) that works both for user input and text that came from the clipboard. It's...

@oudajosefu I'm going to make the checkbox option persistent later, because the feature still requires some work to make it more useful. I noticed that on Chrome the clipboard can...

@oudajosefu I added a slightly improved version of the workaround to master and now Chrome should be able to update the results when the search page isn't focused. The options...

@oudajosefu Nice to see the feature being used! That's exactly the kind of thing I intended it for. I'll try to add some form of text parsing or a view...