1 parent c2042c1 commit 2a97e3eCopy full SHA for 2a97e3e
1 file changed
src/state.rs
@@ -424,6 +424,7 @@ impl State {
424
pub(crate) fn edit_config(&self) -> Result<()> {
425
let editor = std::env::var("EDITOR").unwrap_or_else(|_| "vi".to_string());
426
427
+ // TODO: edit only the config for the current repo.
428
// Invoke the user's editor.
429
let _ = Command::new(editor)
430
.arg(get_xdg_path()?.to_str().unwrap())
0 commit comments