Skip to content

Commit

Permalink
Update README.md PowerShell Script (#54)
Browse files Browse the repository at this point in the history
* Refactor README.md config scripts table layout

* Update README.md PowerShell config script
  • Loading branch information
TheReptar authored Dec 13, 2022
1 parent 72b04ad commit 130e6c2
Showing 1 changed file with 8 additions and 3 deletions.
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.

</td>
</tr>
Expand Down

0 comments on commit 130e6c2

Please sign in to comment.