You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHubβs verified signature.
The key has expired.
π Features
Double click to select a word will now use link providers registered via the API (#3230) via @marvinthepa
Support the ligatures addon with the DOM renderer (#3285) and WebGL renderer (#3286) via @Tyriar
π¦ API
Support async parser handlers (#3222, #3256, #3257, #3267) via @jerch. This enables for example custom parser handlers to defer heavy work to a worker thread. Note that this will block the terminal and you should generally stay away from this API unless it's a lot of work that would block the UI thread.
// Handle \x1b[<params>+Z using an asynchronous handlerterminal.parser.registerCsiHandler({intermediates:'+',final: 'Z'},asyncparams=>{awaitnewPromise(res=>setTimeout(res,50));returnfalse;});
Add onBell event API so embedders can handle the bell however they want (#3290, #3295) via @bmf-ribeiro