terminal user interface to jujutsu. Focused on speed and clarity
9
fork

Configure Feed

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

New command to describe using an editor

+7 -1
+6
jj_tui/bin/graph_view.ml
··· 133 133 ; description = "Describe this revision" 134 134 } 135 135 ; { 136 + key = 'D' 137 + ; cmd = 138 + Dynamic_r (fun rev -> Cmd_I[ "describe"; "-r"; rev; ]) 139 + ; description = "Describe this revision using an editor" 140 + } 141 + ; { 136 142 key = 'R' 137 143 ; cmd = Dynamic_r (fun rev -> Cmd_I [ "resolve"; "-r"; rev ]) 138 144 ; description = "Resolve conflicts at this revision"
+1 -1
jj_tui/bin/jj_ui.ml
··· 124 124 else (fun x -> x |> Ui.atom) <-$ ui_state.jj_show) 125 125 |> W.Scroll.area 126 126 (* let mw=Int.max (Ui.layout_max_width ui) 100 in *) 127 - |>$ Ui.resize ~w:0 ~sh:3 ~sw:2 ~mw:100 ~mh:10000 127 + |>$ Ui.resize ~w:0 ~sh:3 ~sw:2 ~mw:10000 ~mh:10000 128 128 |> W.on_focus ~focus:summary_focus (Ui.resize ~sw:3 ~mw:1000) 129 129 |> W.Box.focusable ~focus:summary_focus ~pad_h:0 ~pad_w:1 130 130 ]