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.

Replace tabs with 4 spaces becasue they cause issuse for nottui

+5 -1
+1 -1
forks/notty/src/notty.ml
··· 15 15 checks to see if x is any of the early control codes, excluding some whitespace like 16 16 0x09 = lf 17 17 *) 18 - let is_C0 x = (x < 0x20 || x = 0x7f) && x!= 0x09 18 + let is_C0 x = (x < 0x20 || x = 0x7f) (*&& x!= 0x09 *) 19 19 and is_C1 x = 0x80 <= x && x < 0xa0 20 20 let is_ctrl x = is_C0 x || is_C1 x 21 21 and is_ascii x = x < 0x80
+4
jj_tui/lib/ansiReverse.ml
··· 154 154 |> Base.String.Search_pattern.replace_all 155 155 (Base.String.Search_pattern.create "\r") 156 156 ~with_:"\n" 157 + (*tabs cause issues too*) 158 + |> Base.String.Search_pattern.replace_all 159 + (Base.String.Search_pattern.create "\t") 160 + ~with_:" " 157 161 in 158 162 match Parser.parse_ansi_escape_codes str with 159 163 | Error a ->