Dexter Leng

Results 156 comments of Dexter Leng

@dbalatero Another solution would be to submit a patch to Chromium to allow enabling accessibility through another attribute that is not `AXEnhanceUserInterface`. Electron apps use `AXManualAccessibility` which works out fine....

Awesome! I looked at the code a while back, it should be a pretty simple change: from ``` if ([attribute isEqualToString:@"AXEnhancedUserInterface"]) { ``` to ``` if ([attribute isEqualToString:@"AXEnhancedUserInterface"] || [attribute...

Turns out the Rectangle window manager handles this weird case. https://github.com/rxhanson/Rectangle/pull/285

Hmm, I think AX apps that want to support non-native apps like Chrome have a few options (or a combination of them): - Support enabling AXEnhancedUserInterface, warn them about window...

I agree there is a need to perform multiple clicks that is easier than `ctrl-space hint1 ctrl-space hint2 ctrl-space hint3.`. My hypothesis is that the cost of doing hand stretching...

This problem of reducing the cost of activating Vimac has many solutions (including the Workflow mode idea I've suggested). I'd love to hear everyone's thoughts and suggestions.

Really awesome ideas in this thread! I think picking or creating the correct workflow for performing mice actions in VImac will require an understanding of what Vimac users aim to...

> "Not all text fields are found..." I noticed some text fields in web browsers not being hinted. I think they show up as divs or text elements rather than...

I've given some thought to the ideas presented here and weighed the benefits/disadvantages. Here are some important attributes I kept in mind while designing the new hint-mode workflow proposal, which...

> What's the timing for multiple clicks? If by timing you mean the interval between clicks, I think I'll have to measure my own mouse clicking speed and follow that....