Commit Graph

336 Commits

Author SHA1 Message Date
Alex Ross
39cf1ffb98 Adopt Tree-Sitter 0.25.1 (#239683)
* Adopt Tree-Sitter 0.25.1

* Update @vscode/tree-sitter-wasm

* Fix incorrect redirect
2025-02-05 17:58:39 +00:00
Matt Bierner
af5a2ecd50 '
Merge branch 'main' into passive-penguin
2025-01-10 15:21:11 -08:00
Daniel Imms
f53e4ea0e3 Update addon-progress and remove ! 2025-01-09 06:27:18 -08:00
Daniel Imms
23e6be7d99 Handle terminal progress
Fixes #237564
2025-01-09 06:04:51 -08:00
Daniel Imms
7297b69dc7 Update xterm.js 2025-01-08 07:49:13 -08:00
Alex Ross
46fdeafcce Update tree-sitter-wasm (#237466) 2025-01-08 11:24:27 +01:00
Daniel Imms
9207b53cf3 @xterm/xterm@5.6.0-beta.74
Fixes #117741
2024-12-20 10:58:46 -08:00
Matt Bierner
83c8c2074b Also bump in remote 2024-12-19 12:34:03 -08:00
Daniel Imms
3751bec9c2 xterm@5.6.0-beta.70
Fixes #233005
2024-11-04 13:30:44 -08:00
Daniel Imms
926cc8c5e5 xterm@5.6.0-beta.68 2024-11-01 07:58:26 -07:00
Daniel Imms
a845c87459 Add ligatures working under Electron
Part of #34103
2024-11-01 07:42:40 -07:00
Benjamin Pasero
b591f33513 🆙 jschardet@3.1.4 (#230197) 2024-10-01 08:19:15 +02:00
Daniel Imms
3f5fa8a8bb xterm@5.6.0-beta.65
Fixes #230010
2024-09-28 06:50:53 -07:00
Daniel Imms
41083a6611 xterm@5.6.0-beta.64
Fixes #224750
2024-09-20 11:21:50 -07:00
Alex Ross
0daa65ac43 Adopt @vscode/tree-sitter-wasm 0.0.4 (#228988) 2024-09-18 14:20:47 -07:00
Alex Ross
f4b5fd6791 Use 0.0.3 @vscode/tree-sitter-wasm (#228235) 2024-09-11 15:44:04 +02:00
Daniel Imms
ffbd0ab953 @xterm/xterm@5.6.0-beta.56
Part of #196795
2024-09-01 07:48:29 -07:00
Alex Ross
977f832a30 Simple tree sitter based syntax highlighting for typescript (#225252)
* Simple tree sitter based syntax highlighting for typescript

Part of #210475

* Implement onceIf using filter

* Mix monaco

* Fix tests

* Switch back to classic

* PR feedback

* Fix bug causing test failure

* Update tree-sitter-wasm

* Fix monaco editor tree shaking

* Fix running monaco checks on Windows

* Use dummy tree sitter service in standalone

* PR feedback
2024-08-19 21:56:31 +02:00
Alexandru Dima
4520f0f17a update to vscode-textmate@9.1.0 (#225682) 2024-08-15 12:51:56 +02:00
Daniel Imms
7fe9562d4c @xterm/xterm@5.6.0-beta.52
Fixes #224555
2024-08-05 12:37:51 -07:00
Alex Ross
eb4633fe7f Re-merge introduction of tree sitter (#223474)
* Make space for tree sitter

* Add the tree sitter wasm file

* Very naive tree-sitter syntax highlighting for html, with a layer breaker

* Update tree when content changes

* WIP for making abstract tokens class

* Handle theme changes

* Replace entire text model value with parse callback

* Perf improvements

* Add tree-sitter-typescript

* Add typescript + better initial parsing

* Refactor into tree parsing service and fix flaw in parse callback

* Remove things that aren't the parser service

* Add yielding

* Remove changes that aren't required for PR

* Remove more file changes

* Reduce yield to 50 ms

* Fix incremental parsing

* Try update node-abi

* Revert "Try update node-abi"

This reverts commit df28801e31.

* Update text buffer chunk api

* fix build

* Remove tree-sitter dependency

* Adopt new, as yet unpublished, `@vscode/tree-sitter-wasm` package

* Use published `@vscode/tree-sitter-wasm` package

* Break `TreeSitterTree` and `TreeSitterParserService` into better pieces
and:
- document the order of editor changes
- use service injection where `TextModel` is constructed

* Fix tests

* Remove unneeded import

* Fix missing tree-sitter-wasm in web and remote

* Make package.jsons match

* Add @vscode/tree-sitter-wasm to web loader config

* Try using importAMDNodeModule

* PR feedback

* Add race condition test for changing language while loading language

* Use same timeout

* Queue content changes

* Remove override dispose

* Move queue into TreeSitterTree

---------

Co-authored-by: Peng Lyu <penn.lv@gmail.com>
2024-07-29 11:31:28 +02:00
Alex Ross
7ed4cdc56d Revert "Add telemtry for how long it takes to parse files with tree-sitter" (#223317)
Revert "Add telemtry for how long it takes to parse files with tree-sitter (#…"

This reverts commit 6c15586994.
2024-07-24 08:47:51 +02:00
Alex Ross
6c15586994 Add telemtry for how long it takes to parse files with tree-sitter (#213565)
* Make space for tree sitter

* Add the tree sitter wasm file

* Very naive tree-sitter syntax highlighting for html, with a layer breaker

* Update tree when content changes

* WIP for making abstract tokens class

* Handle theme changes

* Replace entire text model value with parse callback

* Perf improvements

* Add tree-sitter-typescript

* Add typescript + better initial parsing

* Refactor into tree parsing service and fix flaw in parse callback

* Remove things that aren't the parser service

* Add yielding

* Remove changes that aren't required for PR

* Remove more file changes

* Reduce yield to 50 ms

* Fix incremental parsing

* Try update node-abi

* Revert "Try update node-abi"

This reverts commit df28801e31.

* Update text buffer chunk api

* fix build

* Remove tree-sitter dependency

* Adopt new, as yet unpublished, `@vscode/tree-sitter-wasm` package

* Use published `@vscode/tree-sitter-wasm` package

* Break `TreeSitterTree` and `TreeSitterParserService` into better pieces
and:
- document the order of editor changes
- use service injection where `TextModel` is constructed

* Fix tests

* Remove unneeded import

* Fix missing tree-sitter-wasm in web and remote

* Make package.jsons match

* Add @vscode/tree-sitter-wasm to web loader config

* Try using importAMDNodeModule

* PR feedback

* Add race condition test for changing language while loading language

* Use same timeout

* Queue content changes

* Remove override dispose

* Move queue into TreeSitterTree

---------

Co-authored-by: Peng Lyu <penn.lv@gmail.com>
2024-07-23 14:59:04 +02:00
Daniel Imms
a910c609ac Update xterm, add overview ruler top border
Fixes #221723
2024-07-15 10:19:20 -07:00
Daniel Imms
6cb6ee0a12 Latest xterm.js to fix decoration rendering 2024-07-11 12:14:39 -07:00
Daniel Imms
4f13098d4c Update xterm and integrate new scroll bars
Fixes #211199
Fixes #216521
See xtermjs/xterm.js#5096
2024-07-11 11:27:41 -07:00
Benjamin Pasero
3a0cc239a9 🆙 jschardet@3.1.3 (#220089) 2024-07-05 16:30:50 +02:00
Daniel Imms
60c991e9ef xterm@5.6.0-beta.36
Fixes #219979
2024-07-04 09:01:56 -07:00
Daniel Imms
30e78576e7 Support for OSC52 clipboard access
Fixes #193508
2024-06-04 11:32:59 -07:00
Daniel Imms
1d415f3a90 xterm@5.6.0-beta.19
Fixes #213174
Fixes #213304
2024-06-03 14:29:55 -07:00
Daniel Imms
55a60f9ae9 Merge branch 'main' into tyriar/214142 2024-06-03 08:54:59 -07:00
Daniel Imms
1ec00252ae xterm@5.6.0-beta.18
Fixes #214142
2024-06-03 08:53:24 -07:00
Benjamin Pasero
9b17067697 debt - 🆙 jschardet@3.1.2 (#214136) 2024-06-03 06:22:13 -07:00
Logan Ramos
45cf75ebe4 Update TAS client (#211484) 2024-04-26 22:38:14 +02:00
Daniel Imms
6cdd364d93 Remove canvas renderer
Fixes #209276
2024-04-26 05:54:23 -07:00
Daniel Imms
a2c50be101 Update xterm
Fixes #210833
2024-04-22 13:41:49 -07:00
Daniel Imms
5b0f10e26e Update xterm to bring in onWriteParsed API 2024-04-18 16:40:16 -07:00
Daniel Imms
2a3c5c8115 Update xterm
Fixes #170963
2024-04-12 17:00:03 -07:00
Daniel Imms
26a111b3a2 Update xterm.js
Fixes #208102
2024-03-20 12:15:08 -07:00
Daniel Imms
16b2e2d68e Update xterm.js
Fixes a glyph scaling issue among other minor things
2024-03-18 10:30:57 -07:00
Daniel Imms
b7b436a657 Support rescaling overlapping glyphs
Fixes #206342
2024-03-14 10:02:30 -07:00
Daniel Imms
ad1373ca5a Update xterm 2024-03-04 06:26:29 -08:00
Daniel Imms
f348847d77 Update xterm
Fixes #204690
2024-02-29 08:46:51 -08:00
Daniel Imms
dbdf5813d7 Update xterm.js
Fixes #204104
2024-02-02 11:15:55 -08:00
Daniel Imms
e13013289e Update xterm
Fixes #200428
2024-01-30 12:02:53 -08:00
Daniel Imms
d4e9b63073 Update xterm
Fixes #199848
2023-12-20 10:09:50 -08:00
Daniel Imms
23aa0ceb42 Update xterm
Fixes #200428
2023-12-19 09:20:30 -08:00
Daniel Imms
677f2baba3 Update xterm
Fixes #200469
2023-12-15 09:44:57 -08:00
Daniel Imms
32bf697587 Update xterm, adopt wheel event handler 2023-12-12 05:45:30 -08:00
Daniel Imms
11601f762a Update xterm.js
This fixes several issues thanks to xtermjs/xterm.js#4910
2023-12-08 12:26:08 -08:00