Merge branch 'main' into patch-1
This commit is contained in:
commit
a5afb2b600
|
|
@ -43,7 +43,7 @@ jobs:
|
|||
authToken: ${{ env.CACHIX_AUTH_TOKEN }}
|
||||
name: zoxide
|
||||
- name: Setup cache
|
||||
uses: Swatinem/rust-cache@v2.7.0
|
||||
uses: Swatinem/rust-cache@v2.7.1
|
||||
with:
|
||||
key: ${{ matrix.os }}
|
||||
- name: Install just
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ jobs:
|
|||
override: true
|
||||
target: ${{ matrix.target }}
|
||||
- name: Setup cache
|
||||
uses: Swatinem/rust-cache@v2.7.0
|
||||
uses: Swatinem/rust-cache@v2.7.1
|
||||
with:
|
||||
key: ${{ matrix.target }}
|
||||
- name: Build binary
|
||||
|
|
|
|||
|
|
@ -15,8 +15,10 @@
|
|||
<div>
|
||||
<img src="contrib/warp.png" width="230" alt="Warp" />
|
||||
</div>
|
||||
<b>Warp is a modern, Rust-based terminal with AI built in so you
|
||||
and your team can build great software, faster.</b>
|
||||
<b>
|
||||
Warp is a modern, Rust-based terminal with AI built in so you and your team
|
||||
can build great software, faster.
|
||||
</b>
|
||||
<div>
|
||||
<sup>Visit <u>warp.dev</u> to learn more.</sup>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ pub const MONTH: Epoch = 30 * DAY;
|
|||
pub struct Fzf(Command);
|
||||
|
||||
impl Fzf {
|
||||
const ERR_FZF_NOT_FOUND: &str = "could not find fzf, is it installed?";
|
||||
const ERR_FZF_NOT_FOUND: &'static str = "could not find fzf, is it installed?";
|
||||
|
||||
pub fn new() -> Result<Self> {
|
||||
// On Windows, CreateProcess implicitly searches the current working
|
||||
|
|
|
|||
Loading…
Reference in New Issue