Skip to content

Commit 8ec9526

Browse files
committed
quick fix
1 parent 10cf249 commit 8ec9526

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,11 @@ jobs:
6969
with:
7070
node-version: '20'
7171
cache: 'pnpm'
72+
73+
- name: Setup Bun
74+
uses: oven-sh/setup-bun@v1
75+
with:
76+
bun-version: latest
7277

7378
- name: Install dependencies
7479
run: pnpm install --frozen-lockfile

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,10 @@ This extension contributes the following settings:
7979
- `extreme`: Maximum compression
8080
* `airtableFormula.minify.preserveReadability`: Preserve whitespace for readability
8181

82+
Font note: The extension sets a default editor font for Airtable Formula files to
83+
`Consolas, 'Courier New', monospace`. This only takes effect if the font is
84+
installed on the user's system. VS Code extensions cannot install fonts. [Download Airtable Code Font](https://fonts.adobe.com/fonts/consolas)
85+
8286
## Requirements
8387

8488
- VS Code 1.74.0 or later

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@
212212
"configurationDefaults": {
213213
"[airtable-formula]": {
214214
"editor.maxTokenizationLineLength": 250000,
215+
"editor.fontFamily": "Consolas, 'Courier New', monospace",
215216
"editor.tokenColorCustomizations": {
216217
"textMateRules": [
217218
{

0 commit comments

Comments
 (0)