You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: KEY_CONFIG.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ The location of the file depends on your OS:
26
26
*`$HOME/.config/gitui/key_bindings.ron` (linux)
27
27
*`%APPDATA%/gitui/key_bindings.ron` (Windows)
28
28
29
-
See all possible keys to overwrite in gitui: [here](https://github.com/extrawurst/gitui/blob/master/src/keys/key_list.rs#L83)
29
+
See all possible keys to overwrite in gitui: [here](https://github.com/gitui-org/gitui/blob/master/src/keys/key_list.rs#L83)
30
30
31
31
Possible values for:
32
32
*`code` are defined by the type `KeyCode` in crossterm: [here](https://docs.rs/crossterm/latest/crossterm/event/enum.KeyCode.html)
@@ -48,4 +48,4 @@ Example content of this file looks like:
48
48
shift: Some("shift-")
49
49
)
50
50
```
51
-
This example will only overwrite two symbols. Find all possible symbols to overwrite in `symbols.rs` in the type `KeySymbolsFile` ([src/keys/symbols.rs](https://github.com/extrawurst/gitui/blob/master/src/keys/symbols.rs))
51
+
This example will only overwrite two symbols. Find all possible symbols to overwrite in `symbols.rs` in the type `KeySymbolsFile` ([src/keys/symbols.rs](https://github.com/gitui-org/gitui/blob/master/src/keys/symbols.rs))
Copy file name to clipboardexpand all lines: THEMES.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ Notes:
30
30
* rgb colors might not be supported in every terminal.
31
31
* using a color like `yellow` might appear in whatever your terminal/theme defines for `yellow`
32
32
* valid colors can be found in ratatui's [Color](https://docs.rs/ratatui/latest/ratatui/style/enum.Color.html) struct.
33
-
* all customizable theme elements can be found in [`style.rs` in the `impl Default for Theme` block](https://github.com/extrawurst/gitui/blob/master/src/ui/style.rs#L305)
33
+
* all customizable theme elements can be found in [`style.rs` in the `impl Default for Theme` block](https://github.com/gitui-org/gitui/blob/master/src/ui/style.rs#L305)
Copy file name to clipboardexpand all lines: src/args.rs
+1-1
Original file line number
Diff line number
Diff line change
@@ -100,7 +100,7 @@ fn app() -> ClapApp {
100
100
.value_name("LOG_FILE"))
101
101
.arg(
102
102
Arg::new("watcher")
103
-
.help("Use notify-based file system watcher instead of tick-based update. This is more performant, but can cause issues on some platforms. See https://github.com/extrawurst/gitui/blob/master/FAQ.md#watcher for details.")
103
+
.help("Use notify-based file system watcher instead of tick-based update. This is more performant, but can cause issues on some platforms. See https://github.com/gitui-org/gitui/blob/master/FAQ.md#watcher for details.")
log_eprintln!("\nGitUI was close due to an unexpected panic.\nPlease file an issue on https://github.com/extrawurst/gitui/issues with the following info:\n\n{:?}\ntrace:\n{:?}", e, backtrace);
384
+
log_eprintln!("\nGitUI was close due to an unexpected panic.\nPlease file an issue on https://github.com/gitui-org/gitui/issues with the following info:\n\n{:?}\ntrace:\n{:?}", e, backtrace);
385
385
}));
386
386
387
387
// global threadpool
388
388
rayon_core::ThreadPoolBuilder::new()
389
389
.panic_handler(|e| {
390
390
let backtrace = Backtrace::new();
391
391
shutdown_terminal();
392
-
log_eprintln!("\nGitUI was close due to an unexpected panic.\nPlease file an issue on https://github.com/extrawurst/gitui/issues with the following info:\n\n{:?}\ntrace:\n{:?}", e, backtrace);
392
+
log_eprintln!("\nGitUI was close due to an unexpected panic.\nPlease file an issue on https://github.com/gitui-org/gitui/issues with the following info:\n\n{:?}\ntrace:\n{:?}", e, backtrace);
0 commit comments