Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
859 changes: 536 additions & 323 deletions crates/tsql/src/app/app.rs

Large diffs are not rendered by default.

1,102 changes: 1,073 additions & 29 deletions crates/tsql/src/config/connections.rs

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions crates/tsql/src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ mod keymap;
mod schema;

pub use connections::{
connections_path, load_connections, save_connections, ConnectionColor, ConnectionEntry,
ConnectionsFile, DbKind, SslMode,
connections_path, export_to_path, import_from_path, load_connections, save_connections,
write_connections_atomic, ConnectionColor, ConnectionEntry, ConnectionsFile, DbKind,
ImportConflict, ImportSummary, SortMode, SslMode,
};
pub use keymap::{Action, KeyBinding, Keymap};
pub use schema::{
Expand Down
2 changes: 1 addition & 1 deletion crates/tsql/src/ui/confirm_prompt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ pub enum ConfirmContext {
/// Closing connection form with unsaved changes.
CloseConnectionForm,
/// Switching to a new connection with unsaved query changes.
SwitchConnection { entry: ConnectionEntry },
SwitchConnection { entry: Box<ConnectionEntry> },
/// Applying an in-app binary update.
ApplyUpdate { info: UpdateInfo },
/// Opening the AI assistant when current query editor has content.
Expand Down
Loading
Loading