You can validate any of these methods to create by using the describe command or the debug --raw command.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title>Cargo Build Timings — nu 0.19.0</title> | |
| <meta charset="utf-8"> | |
| <style type="text/css"> | |
| html { | |
| font-family: sans-serif; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [user] | |
| name = Darren Schroeder | |
| email = 343840+fdncred@users.noreply.github.com | |
| [credential] | |
| helper = wincred | |
| [url "https://"] | |
| insteadOf = git:// | |
| [http] | |
| # proxy = http://10.242.47.107:9191 | |
| sslVerify = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # check for env var exists | |
| # "FOO" | env exists? | |
| def "env exists" [] { | |
| each {|s| $s in (env).name } | |
| } | |
| let bn = (ansi { fg: '#ffffff' bg: '#000000' }) | |
| let bb = (ansi { fg: '#ffffff' bg: '#555555' }) | |
| let rn = (ansi { fg: '#ffffff' bg: '#AA0000' }) | |
| let rb = (ansi { fg: '#ffffff' bg: '#FF5555' }) |
Commands specifically made for finding and manipulating binary data. Since naming is hard, we may end up changing the name. :)
- Where you see
oit means stdout. - Where you see
eit means stderr. - Where you see
ait means append. - These are all commands, which shouldn't incur parser changes. However, people could find the first 6 strange having the pipe then the redirect.
| command name | stdout | stderr | stdout | stderr | existing file | example usage |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # TAR Header Block | |
| # Offset Field width Field Name Meaning | |
| # 0 100 name Name of file | |
| # 100 8 mode File mode | |
| # 108 8 uid Owner user ID | |
| # 116 8 gid Owner group ID | |
| # 124 12 size Length of file in bytes | |
| # 136 12 mtime Modify time of file | |
| # 148 8 chksum Checksum for header | |
| # 156 1 link Indicator for links |
Most of this is taken from fzf.fish. A really nice fzf integration with fish-shell.
There's quite a bit of usage of a fish command called commandline. It would be super helpful for porting things like this script if we had such a utility to modify the readline command line buffer.
Set the default fzf options
let-env FZF_DEFAULT_OPTS = '--cycle --layout=reverse --border --height=90% --preview-window=wrap --marker="*"'
OlderNewer