add new style and global search

This commit is contained in:
Christoph Brandau
2026-06-29 17:24:08 +02:00
parent 9861fa2446
commit b0491d1479
17 changed files with 1805 additions and 70 deletions
+9 -4
View File
@@ -3,14 +3,17 @@
mod git;
use git::{
checkout_branch, commit, compare_commits, diff_file_against_working_tree, get_status,
list_branches, list_commits, list_file_history, list_repository_files, merge_branch,
open_repository, pull, push, read_conflict, resolve_conflict, resolve_conflict_side,
restore_file_from_commit, restore_files, restore_to_commit, stage_files, unstage_files,
cancel_code_search, checkout_branch, commit, compare_commits, diff_file_against_working_tree,
get_status, list_branches, list_commits, list_file_history, list_repository_files,
merge_branch, open_repository, pull, push, read_conflict, resolve_conflict,
resolve_conflict_side, restore_file_from_commit, restore_files, restore_to_commit,
search_code_introductions, stage_files, unstage_files, SearchCancellationState,
};
fn main() {
tauri::Builder::default()
.manage(SearchCancellationState::default())
.plugin(tauri_plugin_dialog::init())
.invoke_handler(tauri::generate_handler![
open_repository,
get_status,
@@ -30,6 +33,8 @@ fn main() {
list_file_history,
compare_commits,
diff_file_against_working_tree,
search_code_introductions,
cancel_code_search,
read_conflict,
resolve_conflict,
resolve_conflict_side