From 56cd43fe470e2502138b68d4e89b761a8b30755e Mon Sep 17 00:00:00 2001 From: dustinscrimlabs Date: Tue, 7 Apr 2026 21:32:26 -0500 Subject: [PATCH] Add .gitattributes to enforce LF line endings and update generated types - Add .gitattributes with text=auto eol=lf to prevent CRLF issues across Windows/macOS/Linux contributors - Update auto-generated KeyboardShortcuts.ts to match current Rust struct --- .gitattributes | 2 ++ crates/conch_tauri/frontend/types/KeyboardShortcuts.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..653fec1f --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Normalize all text files to LF in the repo, convert to native on checkout. +* text=auto eol=lf diff --git a/crates/conch_tauri/frontend/types/KeyboardShortcuts.ts b/crates/conch_tauri/frontend/types/KeyboardShortcuts.ts index 22de0d14..dd5f9e62 100644 --- a/crates/conch_tauri/frontend/types/KeyboardShortcuts.ts +++ b/crates/conch_tauri/frontend/types/KeyboardShortcuts.ts @@ -3,4 +3,4 @@ /** * Keyboard shortcuts exposed to the frontend. */ -export type KeyboardShortcuts = { toggle_right_panel: string, toggle_left_panel: string, toggle_bottom_panel: string, split_vertical: string, split_horizontal: string, close_pane: string, rename_tab: string, }; +export type KeyboardShortcuts = { new_plain_shell_tab: string, toggle_right_panel: string, toggle_left_panel: string, toggle_bottom_panel: string, split_vertical: string, split_horizontal: string, close_pane: string, rename_tab: string, manage_tunnels: string, };