Commit Graph

392 Commits (22da9f80981c3db3441c345498359c1833c8e8dd)
 

Author SHA1 Message Date
jeremiejig 22da9f8098 fix a character was ⭠ U+2B60 now  U+E0A0
README of agnoster and bobthefish
10 years ago
Bruno Pinto cd78009ace Merge pull request #180 from syl20bnr/macosx_compatibility 10 years ago
syl20bnr c137a4f1b1 Mac OSX support for syl20bnr theme 10 years ago
Bruno Pinto ef0f1f8c40 adds dashing to bundled commands 10 years ago
Bruno 907f7f5ff0 Merge pull request #181 from schmitzjake/master
removed deprecation warning, vi-mode in fish not yet implemented
10 years ago
Jake Schmitz 7c1d37eafd removed deprecation warning, vi-mode in fish not yet implemented 10 years ago
Bruno f678dedc49 Merge pull request #173 from jhillyerd/proxy
Bug fix: Don't auto-set proxy variables if proxy_host unset
10 years ago
James Hillyerd 22d6ab84f0 Don't auto-set proxy variables if proxy_host unset
- The proxy plugin would create broken environment variables if it was
  enabled but proxy_host was not defined.
10 years ago
Bruno Pinto 0bfc97953e Merge pull request #166 from jhillyerd/yimmy 10 years ago
James Hillyerd 8d119cf6de Missing semicolon after begin statement 10 years ago
James Hillyerd 5544653913 Move screnshot to Github pull request 10 years ago
James Hillyerd d7b7525f78 Add screenshot to README 10 years ago
James Hillyerd 9eb6977799 Screenshot 10 years ago
James Hillyerd 4c60b6adf7 Add LS_COLORS to theme 10 years ago
James Hillyerd 3c152395a2 Make more fish like
- Cache hostname & prompt char
- Use > instead of %
10 years ago
James Hillyerd ad626cb7fa Use __fish_git_prompt 10 years ago
James Hillyerd 1e04277352 Update README 10 years ago
James Hillyerd e581bbb01b Add yimmy theme 10 years ago
Bruno Pinto b2003fccbb Merge pull request #168 from jhillyerd/proxy 10 years ago
James Hillyerd f5d3109d86 OS X `head` command does not support `-` argument for STDIN 10 years ago
James Hillyerd 4346f6b365 Removed NO_PROXY from README.md 10 years ago
James Hillyerd d076e5e289 Update README, remove no_proxy
- README updated with more information about the proxy environment
  varialbes
- no_proxy/NO_PROXY removed from variables being set, it was being used
  incorrectly
diff --git a/plugins/proxy/README.md b/plugins/proxy/README.md index
819d032..3086618 100644 --- a/plugins/proxy/README.md +++
b/plugins/proxy/README.md @@ -2,7 +2,14 @@ proxy plugin ============

 The proxy plugin provides a couple helper functions to those of us who
 are -stuck behind HTTP/HTTPS/FTP proxies that require authentication.
 +stuck behind HTTP/HTTPS/FTP proxies that require authentication.  The
 variables +it exports are used by many command-line and GUI
 applications on Linux, as well +as [MacPorts][1] and [Homebrew][2] on
 OS X.  + +Both uppercase and lowercase versions of the proxy
 environment variables are +set, some applications are case sensitive.
 If you'd like to learn more about +the use of these variables, this
 [Arch Wiki Article][3] is a good place to +start.

 ## Usage

@@ -28,7 +35,6 @@ The proxy plugin will prepend `http://` for you.
Here's the result: ftp_proxy http://myproxy.example.com:8000 http_proxy
http://myproxy.example.com:8000 https_proxy
http://myproxy.example.com:8000
-    no_proxy http://myproxy.example.com:8000

 ### With authentication

@@ -43,3 +49,7 @@ for a password and setup your environment.  If you
didn't setup a proxy_user variable, you will be prompted for a username.

 If you wish to clear your proxy variables, run `noproxy`.  + +[1]:
 http://www.macports.org/ +[2]: http://brew.sh/ +[3]:
 https://wiki.archlinux.org/index.php/proxy_settings
diff --git a/plugins/proxy/_proxy_set.fish b/plugins/proxy/_proxy_set.fish
index b692bf0..e55d29e 100644
--- a/plugins/proxy/_proxy_set.fish
+++ b/plugins/proxy/_proxy_set.fish
@@ -1,8 +1,10 @@
 function _proxy_set -a proxy \
   -d "Set all proxy vars to specified value"

-  set -l envars http_proxy ftp_proxy https_proxy all_proxy no_proxy \
-    HTTP_PROXY HTTPS_PROXY FTP_PROXY NO_PROXY ALL_PROXY
+  set -l envars http_proxy HTTP_PROXY \
+    https_proxy HTTPS_PROXY \
+    ftp_proxy FTP_PROXY \
+    all_proxy ALL_PROXY
   for envar in $envars
     if test $proxy = '-e'
       set -e $envar
10 years ago
James Hillyerd 4682480ea6 Initial commit of proxy plugin 10 years ago
Bruno Pinto ec34dbdc9c deprecating vi-mode plugin 10 years ago
Bruno Pinto d24bc6f074 deprecating rake plugin 10 years ago
Bruno Pinto c32afc6918 Merge pull request #169 from rominf/bak 10 years ago
Roman Inflianskas 6c45d6bc2a bak plugin: add help on 0 arguments 10 years ago
Roman Inflianskas 33b5d64e7f bak plugin: bak renamed to mvbak, cpbak added 10 years ago
Roman Inflianskas 7258977424 add bak plugin 10 years ago
Bruno Pinto b616d17759 Merge pull request #163 from JeanMertz/plugin-chruby 10 years ago
Jean Mertz 56d0cb8cb4 Add `chruby` plugin
Depends on `chruby-fish`: https://github.com/JeanMertz/chruby-fish

set `CHRUBY_AUTO_ENABLED` to `false` to disable auto loading Ruby versions on
directory change.

set `CHRUBY_ROOT` to point to the root path of chruby. The path will be
appended by `share/chruby/chruby.fish` and `share/chruby/auto.fish`.
10 years ago
Bruno 060c730386 Merge pull request #167 from syl20bnr/add-support-native-vi-mode-support
Add support for upcoming fish shell native vi mode
10 years ago
syl20bnr 2c6cde92b3 Add support for upcoming fish shell native vi mode 10 years ago
Bruno Pinto 07789b763a Merge pull request #162 from bobthecow/master 10 years ago
Justin Hileman 98ac1baaad Fix bold flags leaking into prompt 10 years ago
Justin Hileman 8b66273236 Namespace all the bobthefishes. 10 years ago
Bruno Pinto 3de8d837ec Merge pull request #161 from CADBOT/master 10 years ago
CADBOT 4c476a64b4 Add puma to bundled commands list 10 years ago
Bruno 376ae33831 Merge pull request #160 from bobthecow/master
Minor updates for bobthefish
10 years ago
Justin Hileman 563153e667 Add an explicit copyright notice for bobthefish. 10 years ago
Justin Hileman 11087ce22d Fix theme function descriptions. 10 years ago
Bruno 7015ed5ee4 Typo. 10 years ago
Bruno 2ab14365d7 Merge pull request #155 from CADBOT/master
Add a vundle plugin similiar to that found in oh-my-zsh
10 years ago
CADBOT 50396d581b Add a vundle plugin similiar to that found in oh-my-zsh 10 years ago
Bruno Pinto 2f585a1c2d Merge pull request #153 from amio/theme-edan 10 years ago
Amio ada3fa7d2b Update screenshot 10 years ago
Amio bec6dc5d3a Init theme edan 10 years ago
Bruno Pinto 2ad8fb98a0 Merge branch pull request #152 from bachue/robbyrussell_fish_prompt 11 years ago
Bachue Zhou ab2de4699a In robbyrussell, when last status is 0, the prompt should be green, otherwise it should be red, just like oh-my-zsh 11 years ago
Bruno Pinto 0d9d0b783e Merge pull request #148 from steeeve/master 11 years ago