mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-12-23 08:47:50 +00:00
feat: complete symbol view (#218)
* dev: make detypify work * dev: add symbol view * fix: some bugs in symbol picker * dev: make names correct * dev: add help panel in symbol picker * feat: paste the sym directly into the source position * dev: tuning the detail * dev: remove debug logging * dev: recover mock * docs: improve accessibility * dev: change symbol picker to symbol view * dev: download detypify assets * dev: fix download script
This commit is contained in:
parent
5ad5294fca
commit
bbc6e3e4e9
21 changed files with 744 additions and 253 deletions
15
.github/workflows/release.yml
vendored
15
.github/workflows/release.yml
vendored
|
|
@ -74,6 +74,14 @@ jobs:
|
|||
with:
|
||||
submodules: recursive
|
||||
if: (startsWith(github.ref, 'refs/tags/') || matrix.regular_build == 'true')
|
||||
- name: Download detypify assets
|
||||
run: |
|
||||
mkdir -p tools/editor-tools/assets/
|
||||
curl -L https://github.com/QuarticCat/detypify/releases/download/0.2.3/train-out.zip -o train-out.zip
|
||||
unzip -d tools/editor-tools/assets/ train-out.zip
|
||||
mv tools/editor-tools/assets/train-out/ tools/editor-tools/assets/detypify/
|
||||
rm train-out.zip
|
||||
if: (startsWith(github.ref, 'refs/tags/') || matrix.regular_build == 'true')
|
||||
- name: Install Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
|
|
@ -198,6 +206,13 @@ jobs:
|
|||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: Download detypify assets
|
||||
run: |
|
||||
mkdir -p tools/editor-tools/assets/
|
||||
curl -L https://github.com/QuarticCat/detypify/releases/download/0.2.3/train-out.zip -o train-out.zip
|
||||
unzip -d tools/editor-tools/assets/ train-out.zip
|
||||
mv tools/editor-tools/assets/train-out/ tools/editor-tools/assets/detypify/
|
||||
rm train-out.zip
|
||||
- name: Run rust-cache
|
||||
uses: Swatinem/rust-cache@v2
|
||||
- name: Install deps
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue