Skip to content

Commit

Permalink
bugfix #159
Browse files Browse the repository at this point in the history
  • Loading branch information
Ninjani committed Dec 27, 2023
1 parent 33d84b4 commit 70db0c3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.20.2] - 2023-12-27
- Bug fix for`--stdout` option (Issue #[159](https://github.com/out-of-cheese-error/the-way/issues/159))

## [0.20.1] - 2023-12-26
- Updated dependencies
- Fixes sublime-syntax loading issue (Issue #[152](https://github.com/out-of-cheese-error/the-way/issues/152))
Expand Down Expand Up @@ -463,6 +466,8 @@ This uses the correct release directory now based on the TARGET environment vari
- A first working version of the-way
- cargo install option

[0.20.2]: https://github.com/out-of-cheese-error/the-way/compare/v0.20.1...v0.20.2

[0.20.1]: https://github.com/out-of-cheese-error/the-way/compare/v0.20.0...v0.20.1

[0.20.0]: https://github.com/out-of-cheese-error/the-way/compare/v0.19.2...v0.20.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "the-way"
version = "0.20.1"
version = "0.20.2"
edition = "2021"
authors = ["Ninjani"]
description = "A code snippets manager for your terminal"
Expand Down
4 changes: 2 additions & 2 deletions src/the_way/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,15 @@ impl TheWay {
exact,
stdout,
force,
} => self.search(&filters, stdout, search::SkimCommand::All, exact, force),
} => self.search(&filters, exact, search::SkimCommand::All, stdout, force),
TheWaySubcommand::Cp {
index,
filters,
exact,
stdout,
} => match index {
Some(index) => self.copy(index, stdout),
None => self.search(&filters, stdout, search::SkimCommand::Copy, exact, false),
None => self.search(&filters, exact, search::SkimCommand::Copy, stdout, false),
},
TheWaySubcommand::Edit {
index,
Expand Down

0 comments on commit 70db0c3

Please sign in to comment.