My personal-knowledge-system, with deeply integrated task tracking and long term goal planning capabilities.
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #12 from suri-codes/fix/workdir

fix: helix's working directory is now filaments directory

authored by

Surendra Jammishetti and committed by
GitHub
dd56f4d5 a6233c0f

+4 -2
+4 -2
src/tui/app.rs
··· 175 175 tui.exit()?; 176 176 177 177 let hx = spawn({ 178 - let path = path.clone(); 178 + let file_path = path.clone(); 179 + let fil_dir = self.config.fil_dir.clone(); 179 180 move || -> Result<()> { 180 181 Command::new("hx") 181 182 .stdin(std::process::Stdio::inherit()) 182 183 .stdout(std::process::Stdio::inherit()) 183 184 .stderr(std::process::Stdio::inherit()) 184 - .arg(path) 185 + .arg(file_path) 186 + .arg(format!("-w {}", fil_dir.display())) 185 187 .status()?; 186 188 187 189 Ok(())