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
Copy file name to clipboardExpand all lines: docs/customization/editor-settings.mdx
+2-25Lines changed: 2 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,11 +35,7 @@ The font picker shows installed monospaced families on your Mac.
35
35
|**Monaco**| Traditional Mac programming font |
36
36
|**Courier New**| Cross-platform standard |
37
37
38
-
<Tip>
39
-
**System Mono** automatically uses the best available system monospace font.
40
-
</Tip>
41
-
42
-
If a saved font is no longer available, TablePro falls back to System Mono.
38
+
Falls back to System Mono if a saved font is unavailable.
43
39
44
40
{/* Screenshot: Font family selector */}
45
41
<Framecaption="Font family selector with available fonts">
@@ -75,15 +71,6 @@ If a saved font is no longer available, TablePro falls back to System Mono.
75
71
/>
76
72
</Frame>
77
73
78
-
**Recommendations**:
79
-
80
-
| Size | Best For |
81
-
|------|----------|
82
-
| 11-12 pt | Small screens, seeing more code |
83
-
| 13-14 pt | Standard usage (default) |
84
-
| 15-16 pt | Better readability |
85
-
| 17-18 pt | Large screens, accessibility |
86
-
87
74
## Display Settings
88
75
89
76
### Line Numbers
@@ -157,14 +144,6 @@ If a saved font is no longer available, TablePro falls back to System Mono.
157
144
|---------|---------|---------|
158
145
| Tab Width | 1-16 spaces | 4 |
159
146
160
-
Common choices:
161
-
162
-
| Width | Usage |
163
-
|-------|-------|
164
-
| 2 spaces | Compact, JavaScript-style |
165
-
| 4 spaces | Standard SQL formatting (recommended) |
166
-
| 8 spaces | Traditional Unix-style |
167
-
168
147
{/* Screenshot: Tab width setting */}
169
148
<Framecaption="Tab width setting for indentation">
170
149
<img
@@ -216,14 +195,12 @@ SELECT
216
195
|**Off**| Keywords stay as typed (default) |
217
196
|**On**| SQL keywords auto-uppercase when you type a space or delimiter |
218
197
219
-
When enabled, recognized SQL keywords (`select`, `from`, `where`, `join`, etc.) are converted to uppercase as soon as you type a word boundary character (space, tab, newline, parenthesis, comma, or semicolon). Keywords inside strings, comments, and backtick-quoted identifiers are left unchanged.
198
+
SQL keywords auto-uppercase on word boundaries. Keywords inside strings, comments, and quoted identifiers are unaffected.
220
199
221
200
### Autocomplete
222
201
223
202
Autocomplete is always on. Dismiss with `Escape`. See [Autocomplete](/features/autocomplete) for details.
224
203
225
-
All editor settings apply immediately. No restart required.
Copy file name to clipboardExpand all lines: docs/customization/settings.mdx
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -411,19 +411,24 @@ Manage database driver plugins from the **Plugins** tab in Settings.
411
411
412
412
Split-view: plugin list on the left, details on the right. Each row shows version, capability, and source (built-in or user-installed). Filter by name using the search field.
413
413
414
-
TablePro ships with 3 built-in database driver plugins (MySQL, PostgreSQL, SQLite) and 3 built-in export plugins (CSV, JSON, SQL). Additional plugins are available from the plugin registry and can be installed from the Browse tab or downloaded automatically when you select a database type:
414
+
TablePro ships with 6 built-in database driver plugins (MySQL, PostgreSQL, SQLite, ClickHouse, SQL Server, Redis) and 3 built-in export plugins (CSV, JSON, SQL). Additional plugins are available from the plugin registry and can be installed from the Browse tab or downloaded automatically when you select a database type:
415
415
416
416
| Plugin | Database Types | Default Port | Distribution |
Copy file name to clipboardExpand all lines: docs/databases/connection-urls.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: Every supported database URL scheme, format, and query parameter fo
5
5
6
6
# Connection URL Reference
7
7
8
-
TablePro parses standard database connection URLs for importing connections, opening them directly from a browser or terminal, and configuring SSH tunnels. This page covers every supported scheme, format, and query parameter.
8
+
TablePro parses standard database connection URLs for importing connections, opening them directly from a browser or terminal, and configuring SSH tunnels.
Copy file name to clipboardExpand all lines: docs/databases/overview.mdx
+6-8Lines changed: 6 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,6 @@ description: Create, organize, and manage database connections across 18+ suppor
5
5
6
6
# Connection Management
7
7
8
-
TablePro connects to 18+ database systems. Create connections, organize them with colors, tags, and groups, and switch between them instantly.
9
-
10
8
## Supported Databases
11
9
12
10
Natively supported:
@@ -359,9 +357,9 @@ For MySQL, MariaDB, and PostgreSQL, TablePro pings (`SELECT 1`) every **30 secon
359
357
360
358
When a connection drops, TablePro reconnects with exponential backoff:
361
359
362
-
1.**Attempt 1** -- waits 2 seconds, then reconnects
363
-
2.**Attempt 2** -- waits 4 seconds, then reconnects
364
-
3.**Attempt 3** -- waits 8 seconds, then reconnects
360
+
1.**Attempt 1**: waits 2 seconds, then reconnects
361
+
2.**Attempt 2**: waits 4 seconds, then reconnects
362
+
3.**Attempt 3**: waits 8 seconds, then reconnects
365
363
366
364
After three failures, the connection enters an error state. A **Reconnect** button appears in the toolbar.
367
365
@@ -395,7 +393,7 @@ SQLite connections are file-based and don't require health monitoring or auto-re
395
393
396
394
## Startup Commands
397
395
398
-
SQL statements that run automatically on every connection. Use them to set session variables, timezone, encoding, or other session options.
396
+
SQL statements that run automatically on every connection.
399
397
400
398
Configure startup commands in the **Advanced** tab of the connection form. Enter one SQL statement per line.
401
399
@@ -416,12 +414,12 @@ Set a timezone here to ensure datetime results are consistent across team member
416
414
</Tip>
417
415
418
416
<Note>
419
-
Startup commands run on every connection, including auto-reconnects. They are database-specific: use MySQL syntax for MySQL connections, PostgreSQL syntax for PostgreSQL, and so on.
417
+
Startup commands run on every connection, including auto-reconnects.
420
418
</Note>
421
419
422
420
## Editing and Deleting Connections
423
421
424
-
Right-click a connection to edit or delete it. Changes take effect on the next connection. Deleting removes the saved settings only; your database is unaffected.
422
+
Right-click a connection to edit or delete it. Changes take effect on the next connection. Deleting removes the saved settings only.
0 commit comments