mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-21 12:15:00 +00:00
feature: Allows you to show space and tab symbols in DiffView
This commit is contained in:
parent
3dc32c87a8
commit
9c7ac5b067
8 changed files with 51 additions and 3 deletions
|
@ -320,6 +320,12 @@ namespace SourceGit.ViewModels
|
|||
set;
|
||||
} = 0;
|
||||
|
||||
public bool ShowHiddenSymbols
|
||||
{
|
||||
get => _showHiddenSymbols;
|
||||
set => SetProperty(ref _showHiddenSymbols, value);
|
||||
}
|
||||
|
||||
[JsonIgnore]
|
||||
public bool ShouldCheck4UpdateOnStartup
|
||||
{
|
||||
|
@ -535,6 +541,7 @@ namespace SourceGit.ViewModels
|
|||
private bool _useSideBySideDiff = false;
|
||||
private bool _useSyntaxHighlighting = false;
|
||||
private bool _enableDiffViewWordWrap = false;
|
||||
private bool _showHiddenSymbols = false;
|
||||
|
||||
private Models.ChangeViewMode _unstagedChangeViewMode = Models.ChangeViewMode.List;
|
||||
private Models.ChangeViewMode _stagedChangeViewMode = Models.ChangeViewMode.List;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue