You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[CompletionResult]::new('--show-symlinks','listfilessyl', [CompletionResultType]::ParameterName,'explicitly show symbolic links (for use with --only-dirs | --only-files)')
82
87
[CompletionResult]::new('--no-symlinks','listfilessyl', [CompletionResultType]::ParameterName,'do not show symbolic links')
# [CompletionResult]::new('--colour-scale-mode' ,'colorscalemode' , [CompletionResultType]::ParameterName, 'use gradient or fixed colors in --color-scale (fixed, gradient)')
159
164
[CompletionResult]::new('--icons','icons', [CompletionResultType]::ParameterName,'when to display icons (always, auto, never)')
160
165
[CompletionResult]::new('--no-quotes','noquotes', [CompletionResultType]::ParameterName,'don''t quote file names with spaces')
161
-
[CompletionResult]::new('--hyperlink','hyperlink', [CompletionResultType]::ParameterName,'display entries as hyperlinks')
166
+
[CompletionResult]::new('--hyperlink','hyperlink', [CompletionResultType]::ParameterName,'when to display entries as hyperlinks (always, auto, never)')
162
167
[CompletionResult]::new('--absolute','absolute', [CompletionResultType]::ParameterName,'display entries with their absolute path (on, follow, off)')
163
168
[CompletionResult]::new('--follow-symlinks','followsymlinks', [CompletionResultType]::ParameterName,'drill down into symbolic links that point to directories')
164
169
# [CompletionResult]::new('-w' ,'widths' , [CompletionResultType]::ParameterName, 'set screen width in columns')
Copy file name to clipboardExpand all lines: man/eza.1.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -123,9 +123,14 @@ When used without a value, defaults to ‘`automatic`’.
123
123
`--no-quotes`
124
124
: Don't quote file names with spaces.
125
125
126
-
`--hyperlink`
126
+
`--hyperlink=WHEN`
127
127
: Display entries as hyperlinks
128
128
129
+
Valid settings are ‘`always`’, ‘`automatic`’ (‘`auto`’ for short), and ‘`never`’.
130
+
When used without a value, defaults to ‘`automatic`’.
131
+
132
+
`automatic` or `auto` will display hyperlinks only when the standard output is connected to a real terminal. If `eza` is ran while in a `tty`, or the output of `eza` is either redirected to a file or piped into another program, hyperlinks will not be used. Setting this option to ‘`always`’ causes `eza` to always display hyperlinks, while ‘`never`’ disables the use of hyperlinks.
0 commit comments