Skip to content
Open
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
90 changes: 89 additions & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ tauri-plugin-process = "2"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "stream"] }
bytes = "1"
futures-util = "0.3"
notify = "7"

[target.'cfg(target_os = "macos")'.dependencies]
keyring = { version = "3.6", default-features = false, features = [
Expand Down
5 changes: 5 additions & 0 deletions src-tauri/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ pub fn run() {
// Skip restoring VISIBLE — frontend calls window.show() after first
// paint so the user never sees a transparent window-shadow flash on
// Windows/Linux.
.manage(fs::watch::FsWatchState::default())
.plugin(
tauri_plugin_window_state::Builder::new()
.with_state_flags(StateFlags::all() & !StateFlags::VISIBLE)
Expand Down Expand Up @@ -139,6 +140,10 @@ pub fn run() {
fs::search::fs_search,
fs::grep::fs_grep,
fs::grep::fs_glob,
fs::watch::fs_watch_start,
fs::watch::fs_watch_stop,
fs::watch::fs_watch_add,
fs::watch::fs_watch_remove,
shell::shell_run_command,
shell::shell_session_open,
shell::shell_session_run,
Expand Down
1 change: 1 addition & 0 deletions src-tauri/src/modules/fs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ pub mod grep;
pub mod mutate;
pub mod search;
pub mod tree;
pub mod watch;

use std::path::Path;

Expand Down
Loading