docs/features/editor_features.md
The language server provides autocompletion and hover information when connected to a database.
As you type SQL, the language server suggests relevant database objects based on your current context:
The suggestions are context-aware - for example, when typing after FROM, you'll see table suggestions, and when typing after SELECT, you'll see column suggestions from relevant tables.
Hovering over database objects in your SQL shows detailed information:
The hover information is pulled from your database schema.
Both features require:
Without a database connection, these features are not available.
These features work automatically when you have a database connection configured. See the database configuration guide for setup instructions.
The language server caches schema information on startup.