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.

document and add enter command

+8 -3
+4 -2
README.md
··· 7 7 8 8 9 9 Press `?` to show the help. (commands are different between graph and files view). 10 - Press `Arrows` to navigate windows, `Enter` to focus status view 11 - Press `Space` to select/deselect revisions (multi-select in graph view) 10 + `Arrows` or `hjkl` to navigate windows/items 11 + `Space` to select/deselect revisions (multi-select in graph view) 12 + `Enter` to widen the diff and scroll through it 13 + 12 14 List of graph commands: 13 15 14 16 ![jj_tui commands](https://github.com/user-attachments/assets/1e446a3d-1736-4207-b311-29d8e4bdc333)
+4 -1
jj_tui/bin/jj_commands.ml
··· 159 159 let space_command = 160 160 render_command_line ~indent_level:0 "<space>" "toggle selection (multi-select)" 161 161 in 162 - ((commands |> render_commands) @ if include_arrows then [ move_command; space_command ] else []) 162 + let enter_command= 163 + render_command_line ~indent_level:0 "<Enter>" "Focus status view to enlarge and scroll diff" 164 + in 165 + ((commands |> render_commands) @ if include_arrows then [ move_command; space_command;enter_command ] else []) 163 166 |> I.vcat 164 167 |> Ui.atom 165 168 |> Lwd.pure