- Monaco Editor (same engine as VS Code)
- Syntax highlighting for SQL
- Intelligent auto-complete (table names, column names, SQL keywords)
- Multi-cursor editing
- SQL formatting (
Shift+Alt+F)
- Find and replace (
Cmd+F)
- Drag and drop table names from sidebar
| Action |
Shortcut |
| Run query |
Cmd/Ctrl+Enter |
| Run selected text |
Select text, then Cmd/Ctrl+Enter |
| Explain query |
Toolbar "Explain" button |
| Cancel running query |
Toolbar "Cancel" button |
You can write multiple SQL statements separated by semicolons. Tabloy executes them sequentially and shows results for each SELECT statement in separate tabs.
- All executed queries are saved automatically
- Open history: click "History" in toolbar
- Search, filter by favorites, reuse previous queries
- History is stored in SQLite (persists across restarts)
| Action |
Shortcut |
| Open .sql file |
Cmd/Ctrl+O |
| Save to .sql file |
Cmd/Ctrl+S |
| Save as |
Cmd/Ctrl+Shift+S |