Nige White

Results 19 comments of Nige White

I'm detecting focusable descendants within a whole set of focusable "containers" for A11Y purposes. I have a single `TreeWalker` who's root is the outermost element which contains these visitable containers....

> Why is this using a single TreeWalker and jumping currentNode, instead of making a new TreeWaker for each cell? Because I'm an old fashioned C programmer. I don't like...

This is what's wrong with the kids these days.

I'd like to vote for this too. Programatically collapsing ranges of code is an absolutely essential feature. We are developing a code editor where I'd like to collapse large areas...

> We have several commands for folding that also can be used programmatically: e.g [editor.fold](https://github.com/microsoft/vscode/blob/0cc93cf588f7faf5268e05bef765376a44b654d0/src/vs/editor/contrib/folding/browser/folding.ts#L699) Did you try these? How would we even know it exists? The documentation is TERRIBLE...

It reproduces in your own examples. Get it fixed. ![Screenshot 2024-04-11 at 07 24 02](https://github.com/microsoft/monaco-editor/assets/200516/e60b1d7d-f862-45a2-ab63-39444d2d36cb)

> Please fill out the bug report form completely and provide screenshots. Thanks! Lazy. Just go to https://microsoft.github.io/monaco-editor/playground.html?source=v0.45.0#example-extending-language-services-configure-javascript-defaults on your iPad, or with Chrome emulating an iPad: ![Screenshot 2024-04-11 at...

> At present, official seems to be quite passive in addressing the issues occurring on mobile devices. I added a quickfix to our editor component which we use to wrap...

`animate` is too broad a name. This is to affect only whether maximize animates or not? I suggest making `maximizable` a potentially granular config eg: `maximizable : true/false` to enable...

Side effects: ``` { layout: {ntype: 'vbox', align: 'stretch'} } getting extended or instantiated with: { layout: {ntype: 'vbox'} } ``` That is the intention. If the Container's *class* specifies...