Skip to content

Commit

Permalink
Rename a couple of more instances
Browse files Browse the repository at this point in the history
  • Loading branch information
robenkleene committed Aug 4, 2023
1 parent 5be5ab5 commit 1fc3138
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub(crate) struct Options {
/** Write the output to files directly (instead of outputting a patch)
If this flag is not present, and a patch is output, then the default pager is `less`. The
environment variable MOV_PAGER can be used to override the pager.
environment variable REN_PAGER can be used to override the pager.
*/
pub write: bool,

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ fn main() -> Result<()> {
false
};

let pager = env::var("MOV_PAGER").ok();
let pager = env::var("REN_PAGER").ok();

if let (Some(find), Some(replace_with)) = (options.find, options.replace_with) {
App::new(Replacer::new(
Expand Down

0 comments on commit 1fc3138

Please sign in to comment.