configs  Check-in [233fe7e920]

Overview
Comment:Add eps.fish

This expands, prints and then sets the variable $e. This allows to
preview an expansion and then use it by just using $e.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 233fe7e920a4448fd5b49aa148305faa86ec5d9e7f64d8d2be32e8627ff3eb27
User & Date: js on 2020-02-20 21:58:31
Other Links: manifest | tags
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

Modified config/fish/config.fish from [0b2c55f51a] to [f3a6b2acc4].

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_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
set -x LS_COLORS 'di=34:ow=44;37:tw=44;37:st=44;37:ex=31:su=7;31:sg=7;31:ln=33:or=7;33:pi=32:do=32:bd=35:cd=35:so=32:*.bz2=36:*.dmg=36:*.gz=36:*.gpg=36:*.rar=36:*.tar=36:*.tbz2=36:*.tgz=36:*.xz=36:*.zip=36:*.orig=90:*~=90'







>








13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
set -x LS_COLORS 'di=34:ow=44;37:tw=44;37:st=44;37:ex=31:su=7;31:sg=7;31:ln=33:or=7;33:pi=32:do=32:bd=35:cd=35:so=32:*.bz2=36:*.dmg=36:*.gz=36:*.gpg=36:*.rar=36:*.tar=36:*.tbz2=36:*.tgz=36:*.xz=36:*.zip=36:*.orig=90:*~=90'

Added config/fish/functions/eps.fish version [02a1f15002].









>
>
>
>
1
2
3
4
function eps --description 'Expand, print and set variable $e'
    set -g e $argv
    echo $e
end