Overview
Comment: | Add eps.fish
This expands, prints and then sets the variable $e. This allows to |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
233fe7e920a4448fd5b49aa148305faa |
User & Date: | js 2020-02-20 21:58:31 |
Context
2020-02-20
| ||
22:04 | .gitignore: Add config/fish/fish_variables check-in: 9086b77ad3 user: js tags: trunk | |
21:58 | Add eps.fish check-in: 233fe7e920 user: js tags: trunk | |
21:50 | Remove fish_variables, use config.fish check-in: 77c2f41ee3 user: js tags: trunk | |
Changes
Changes to config/fish/config.fish.
︙ | ︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 | set -g fish_color_quote ff751a set -g fish_color_redirection bf4080 set -g fish_color_search_match ffff00 set -g fish_color_selection c0c0c0 set -g fish_color_status --bold red set -g fish_color_suffix 29bc7d set -g fish_color_user 00ff00 set -g fish_color_vcs 43d696 set -g fish_color_vcs_braces 29bc7d set -g _fish_abbr_gpg gpg2 set -g _fish_abbr_vi vim set -x EDITOR vim | > | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | set -g fish_color_quote ff751a set -g fish_color_redirection bf4080 set -g fish_color_search_match ffff00 set -g fish_color_selection c0c0c0 set -g fish_color_status --bold red set -g fish_color_suffix 29bc7d set -g fish_color_user 00ff00 set -g fish_color_valid_path normal set -g fish_color_vcs 43d696 set -g fish_color_vcs_braces 29bc7d set -g _fish_abbr_gpg gpg2 set -g _fish_abbr_vi vim set -x EDITOR vim |
︙ | ︙ |
Added config/fish/functions/eps.fish.
> > > > | 1 2 3 4 | function eps --description 'Expand, print and set variable $e' set -g e $argv echo $e end |