vcs: remove unused lazyjj, gitui

This commit is contained in:
Daniel Lundin 2025-01-03 19:22:16 +01:00
parent 4766311654
commit 90b5b48d2a
Signed by: dln
SSH key fingerprint: SHA256:dQy1Xj3UiqJYpKR5ggQ2bxgz4jCH8IF+k3AB8o0kmdI
2 changed files with 0 additions and 48 deletions

View file

@ -53,15 +53,6 @@ function vcs_log
commandline -f repaint commandline -f repaint
end end
function vcs_ui
if __jj_in_repo
lazyjj
else
gitui
end
commandline -f repaint
end
# Abbreviations # Abbreviations
abbr -a d vcs_diff abbr -a d vcs_diff
@ -71,6 +62,5 @@ abbr -a s vcs_status
bind \c_ vcs_jump bind \c_ vcs_jump
bind \ea vcs_log bind \ea vcs_log
bind \ee vcs_broot bind \ee vcs_broot
bind \eg vcs_ui
bind \eS vcs_diff bind \eS vcs_diff
bind \es vcs_status bind \es vcs_status

View file

@ -7,7 +7,6 @@
difftastic difftastic
git-get git-get
git-graph git-graph
lazyjj
tea tea
]; ];
@ -130,43 +129,6 @@
}; };
}; };
programs.gitui = {
enable = true;
keyConfig = ''
(
open_help: Some(( code: F(1), modifiers: "")),
move_left: Some(( code: Char('h'), modifiers: "")),
move_right: Some(( code: Char('l'), modifiers: "")),
move_up: Some(( code: Char('k'), modifiers: "")),
move_down: Some(( code: Char('j'), modifiers: "")),
popup_up: Some(( code: Char('p'), modifiers: "CONTROL")),
popup_down: Some(( code: Char('n'), modifiers: "CONTROL")),
page_up: Some(( code: Char('b'), modifiers: "CONTROL")),
page_down: Some(( code: Char('f'), modifiers: "CONTROL")),
home: Some(( code: Char('g'), modifiers: "")),
end: Some(( code: Char('G'), modifiers: "SHIFT")),
shift_up: Some(( code: Char('K'), modifiers: "SHIFT")),
shift_down: Some(( code: Char('J'), modifiers: "SHIFT")),
edit_file: Some(( code: Char('I'), modifiers: "SHIFT")),
status_reset_item: Some(( code: Char('U'), modifiers: "SHIFT")),
diff_reset_lines: Some(( code: Char('u'), modifiers: "")),
diff_stage_lines: Some(( code: Char('s'), modifiers: "")),
stashing_save: Some(( code: Char('w'), modifiers: "")),
stashing_toggle_index: Some(( code: Char('m'), modifiers: "")),
stash_open: Some(( code: Char('l'), modifiers: "")),
abort_merge: Some(( code: Char('M'), modifiers: "SHIFT")),
)
'';
theme = ''
(
selection_bg: Some(Black),
selection_fg: Some(Reset),
cmdbar_bg: Some(Reset),
cmdbar_extra_lines_bg: Some(Reset),
)
'';
};
programs.jujutsu = { programs.jujutsu = {
enable = true; enable = true;
package = inputs.jujutsu.packages.${pkgs.system}.default; package = inputs.jujutsu.packages.${pkgs.system}.default;