-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Compare before-after of config files in functional tests
- We check the config files before-after, especially for the hotfix for #12. - Make some styling improvements
- Loading branch information
Showing
7 changed files
with
122 additions
and
17 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Example .bashrc config file | ||
|
||
# If not running interactively, don't do anything | ||
case $- in | ||
*i*) ;; | ||
*) return;; | ||
esac | ||
|
||
|
||
|
||
# Define some colors first: | ||
red='\e[0;31m' | ||
RED='\e[1;31m' | ||
blue='\e[0;34m' | ||
|
||
# Shell completion configuration for the Click Python package | ||
command -v example-2 > /dev/null 2>&1 && eval "$(_EXAMPLE_2_COMPLETE=bash_source example-2)" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Example .bashrc config file | ||
|
||
# If not running interactively, don't do anything | ||
case $- in | ||
*i*) ;; | ||
*) return;; | ||
esac | ||
|
||
|
||
# Shell completion configuration for the Click Python package | ||
eval "$(_EXAMPLE_2_COMPLETE=bash_source example-2)" | ||
|
||
# Define some colors first: | ||
red='\e[0;31m' | ||
RED='\e[1;31m' | ||
blue='\e[0;34m' |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Example fish config file | ||
|
||
|
||
|
||
# Shell completion configuration for the Click Python package | ||
command -v example-2 > /dev/null 2>&1 && _EXAMPLE_2_COMPLETE=fish_source example-2 | source |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Example fish config file | ||
|
||
# Shell completion configuration for the Click Python package | ||
_EXAMPLE_2_COMPLETE=fish_source example-2 | source |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Example .zshrc config file | ||
|
||
# If not running interactively, don't do anything | ||
case $- in | ||
*i*) ;; | ||
*) return;; | ||
esac | ||
|
||
|
||
|
||
|
||
# Define some colors first: | ||
red='\e[0;31m' | ||
RED='\e[1;31m' | ||
blue='\e[0;34m' | ||
|
||
# Shell completion configuration for the Click Python package | ||
command -v example-2 > /dev/null 2>&1 && eval "$(_EXAMPLE_2_COMPLETE=zsh_source example-2)" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Example .zshrc config file | ||
|
||
# If not running interactively, don't do anything | ||
case $- in | ||
*i*) ;; | ||
*) return;; | ||
esac | ||
|
||
|
||
|
||
# Shell completion configuration for the Click Python package | ||
eval "$(_EXAMPLE_2_COMPLETE=zsh_source example-2)" | ||
|
||
# Define some colors first: | ||
red='\e[0;31m' | ||
RED='\e[1;31m' | ||
blue='\e[0;34m' |