Overview
Comment: | fish: Add aliases for fossil |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
3e5396f24b648f18af1944d04a65e370 |
User & Date: | js 2020-05-23 23:22:31 |
Context
2020-05-24
| ||
00:13 | zshrc: Show git and fossil branch at the same time check-in: 5cca8d3f29 user: js tags: trunk | |
2020-05-23
| ||
23:22 | fish: Add aliases for fossil check-in: 3e5396f24b user: js tags: trunk | |
23:14 | gpg.conf: Update preferences & default key check-in: b773ed3227 user: js tags: trunk | |
Changes
Changes to fish/config.fish.
︙ | ︙ | |||
19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 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 test -n "$XDG_CONFIG_HOME" or set -x XDG_CONFIG_HOME $HOME/.config test -n "$XDG_CACHE_HOME" or set -x XDG_CACHE_HOME $HOME/.cache | > | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | 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_fsl fossil set -g _fish_abbr_gpg gpg2 set -g _fish_abbr_vi vim test -n "$XDG_CONFIG_HOME" or set -x XDG_CONFIG_HOME $HOME/.config test -n "$XDG_CACHE_HOME" or set -x XDG_CACHE_HOME $HOME/.cache |
︙ | ︙ |
Added fish/functions/fsld.fish.
> > > | 1 2 3 | function fsld fossil diff $argv | colordiff | less -FRX end |