Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Then add to your shell:
eval "$(try init)"

# Fish - add to config.fish
eval (try init | string collect)
try init | source
```

### Quick Start (Manual)
Expand All @@ -52,7 +52,7 @@ chmod +x ~/.local/try.rb
echo 'eval "$(ruby ~/.local/try.rb init ~/src/tries)"' >> ~/.zshrc

# for fish shell users
echo 'eval (~/.local/try.rb init ~/src/tries | string collect)' >> ~/.config/fish/config.fish
echo '~/.local/try.rb init ~/src/tries | source' >> ~/.config/fish/config.fish
```

## The Problem
Expand Down Expand Up @@ -112,9 +112,9 @@ Not just substring matching - it's smart:
- Fish:

```fish
eval (~/.local/try.rb init | string collect)
~/.local/try.rb init | source
# or pick a path
eval (~/.local/try.rb init ~/src/tries | string collect)
~/.local/try.rb init ~/src/tries | source
```

Notes:
Expand Down Expand Up @@ -232,9 +232,9 @@ After installation, add to your shell:
- Fish:

```fish
eval "(try init | string collect)"
try init | source
# or pick a path
eval "(try init ~/src/tries | string collect)"
try init ~/src/tries | source
```

## Why Ruby?
Expand Down