mirror of
https://github.com/sharkdp/bat
synced 2024-11-10 06:14:13 +00:00
Rename get_line_changes
This commit is contained in:
parent
1f2bcf57ba
commit
b5c119e802
1 changed files with 2 additions and 2 deletions
|
@ -105,7 +105,7 @@ fn print_file<P: AsRef<Path>>(
|
|||
Ok(())
|
||||
}
|
||||
|
||||
fn get_line_changes(filename: String) -> Option<LineChanges> {
|
||||
fn get_git_diff(filename: String) -> Option<LineChanges> {
|
||||
let repo = Repository::open_from_env().ok()?;
|
||||
|
||||
let mut diff_options = DiffOptions::new();
|
||||
|
@ -166,7 +166,7 @@ fn run(matches: &ArgMatches) -> Result<()> {
|
|||
|
||||
if let Some(files) = matches.values_of("FILE") {
|
||||
for file in files {
|
||||
let line_changes = get_line_changes(file.to_string());
|
||||
let line_changes = get_git_diff(file.to_string());
|
||||
print_file(theme, &syntax_set, file, line_changes)?;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue