Skip to content

Commit 7d16c5b

Browse files
authored
feat: refresh command docs for nu v0.75 (#760)
1 parent 713571e commit 7d16c5b

File tree

449 files changed

+788
-558
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

449 files changed

+788
-558
lines changed

book/commands/agg-groups.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: agg-groups
33
categories: |
44
expression
5-
version: 0.74.0
5+
version: 0.75.0
66
expression: |
77
creates an agg_groups expression
88
usage: |

book/commands/agg.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: agg
33
categories: |
44
lazyframe
5-
version: 0.74.0
5+
version: 0.75.0
66
lazyframe: |
77
Performs a series of aggregations from a group-by
88
usage: |

book/commands/alias.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: alias
33
categories: |
44
core
5-
version: 0.74.0
5+
version: 0.75.0
66
core: |
77
Alias a command (with optional flags) to a new name
88
usage: |

book/commands/all-false.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: all-false
33
categories: |
44
dataframe
5-
version: 0.74.0
5+
version: 0.75.0
66
dataframe: |
77
Returns true if all values are false
88
usage: |

book/commands/all-true.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: all-true
33
categories: |
44
dataframe
5-
version: 0.74.0
5+
version: 0.75.0
66
dataframe: |
77
Returns true if all values are true
88
usage: |

book/commands/all.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: all
33
categories: |
44
filters
5-
version: 0.74.0
5+
version: 0.75.0
66
filters: |
77
Test if every element of the input fulfills a predicate expression.
88
usage: |

book/commands/ansi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: ansi
33
categories: |
44
platform
5-
version: 0.74.0
5+
version: 0.75.0
66
platform: |
77
Output ANSI codes to change color.
88
usage: |

book/commands/ansi_gradient.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: ansi gradient
33
categories: |
44
platform
5-
version: 0.74.0
5+
version: 0.75.0
66
platform: |
77
Add a color gradient (using ANSI color codes) to the given string
88
usage: |

book/commands/ansi_link.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
title: ansi link
3+
categories: |
4+
platform
5+
version: 0.75.0
6+
platform: |
7+
Add a link (using OSC 8 escape sequence) to the given string
8+
usage: |
9+
Add a link (using OSC 8 escape sequence) to the given string
10+
---
11+
12+
# <code>{{ $frontmatter.title }}</code> for platform
13+
14+
<div class='command-title'>{{ $frontmatter.platform }}</div>
15+
16+
## Signature
17+
18+
```> ansi link ...rest --text```
19+
20+
## Parameters
21+
22+
- `...rest`: for a data structure input, add links to all strings at the given cell paths
23+
- `--text {string}`: Link text. Uses uri as text if absent. In case of
24+
tables, records and lists applies this text to all elements
25+
26+
## Examples
27+
28+
Create a link to open some file
29+
```shell
30+
> 'file:///file.txt' | ansi link --text 'Open Me!'
31+
```
32+
33+
Create a link without text
34+
```shell
35+
> 'https://www.nushell.sh/' | ansi link
36+
```
37+
38+
Format a table column into links
39+
```shell
40+
> [[url text]; [https://example.com Text]] | ansi link url
41+
```

book/commands/ansi_strip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: ansi strip
33
categories: |
44
platform
5-
version: 0.74.0
5+
version: 0.75.0
66
platform: |
77
Strip ANSI escape sequences from a string
88
usage: |

0 commit comments

Comments
 (0)