Skip to content

Commit af9da95

Browse files
tdtrung17693extrawurst
authored andcommitted
add syntax highlighting for blame view (#745)
1 parent ab95b98 commit af9da95

File tree

3 files changed

+232
-58
lines changed

3 files changed

+232
-58
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## Unreleased
9+
### Changes
10+
- add syntax highlighting for blame view [[@tdtrung17693](https://github.com/tdtrung17693)] ([#745](https://github.com/extrawurst/gitui/issues/745))
911

1012
** multiline text editor **
1113

src/app.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,6 @@ impl App {
399399
self.status_tab.update_git(ev)?;
400400
self.stashing_tab.update_git(ev)?;
401401
self.revlog.update_git(ev)?;
402-
self.blame_file_popup.update_git(ev)?;
403402
self.file_revlog_popup.update_git(ev)?;
404403
self.inspect_commit_popup.update_git(ev)?;
405404
self.compare_commits_popup.update_git(ev)?;
@@ -411,6 +410,7 @@ impl App {
411410
}
412411

413412
self.files_tab.update_async(ev)?;
413+
self.blame_file_popup.update_async(ev)?;
414414
self.revision_files_popup.update(ev)?;
415415
self.tags_popup.update(ev);
416416

0 commit comments

Comments
 (0)