File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -65,6 +65,4 @@ GITUI_LOGGING=true gitui
65
65
66
66
* https://github.com/jesseduffield/lazygit
67
67
* https://github.com/jonas/tig
68
- * https://github.com/git-up/GitUp (would be nice to comeup with a way to have the map view available in a terminal tool)
69
-
70
- test
68
+ * https://github.com/git-up/GitUp (would be nice to comeup with a way to have the map view available in a terminal tool)
Original file line number Diff line number Diff line change @@ -244,7 +244,8 @@ impl DiffComponent {
244
244
// weird eof missing eol line
245
245
format ! ( "{}\n " , line. content. trim_matches( '\n' ) )
246
246
} ;
247
- let content = Cow :: from ( filled) ;
247
+ //TODO: allow customize tabsize
248
+ let content = Cow :: from ( filled. replace ( "\t " , " " ) ) ;
248
249
249
250
text. push ( match line. line_type {
250
251
DiffLineType :: Delete => {
You can’t perform that action at this time.
0 commit comments