Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md PowerShell Script #54

Merged
merged 2 commits into from
Dec 13, 2022
Merged
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
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ Put the next function into the **.bashrc** or a similar config:
<tr>
<th> Bash </th>
<th> Fish </th>
<th> PowerShell </th>
</tr>
<tr>
<td>
Expand All @@ -61,13 +60,19 @@ end
```

</td>
<td>
</tr>
<tr>
<th colspan="2"> PowerShell </th>
</tr>
<tr>
<td colspan="2">

```powershell
function ll() {
cd "$(llama $args)"
cd $(llama $args | Out-String -Stream | Select-Object -Last 1)
}
```
See [issues/30](https://github.com/antonmedv/llama/issues/30) for more details.
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Still in pr

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, I kept that in the actual README so that when users read the setup docs they can understand that the script is actually a workaround for an upstream issue (all that info is in #30), that's something that could be removed once the issue is closed and the script is updated again. I just removed the association in the PR text that would close the issue once it's merged.


</td>
</tr>
Expand Down