Commit Graph

649 Commits

Author SHA1 Message Date
ngroup
e2015c111e remove the screenshot 2014-07-15 16:37:49 -03:00
ngroup
2c92fd8b54 Update README.md 2014-07-15 16:37:49 -03:00
ngroup
493dc481e6 Update README.md 2014-07-15 16:37:49 -03:00
ngroup
27e89495ef update theme "ocean" README 2014-07-15 16:37:49 -03:00
ngroup
47140efa2b update theme "ocean" README 2014-07-15 16:37:49 -03:00
ngroup
fca7516642 add theme "ocean" 2014-07-15 16:37:49 -03:00
Bruno
eefe9f297e Merge pull request #186 from jeremiejig/fixREADME
Correct unicode point in some ReadMe
2014-07-15 16:34:21 -03:00
jeremiejig
22da9f8098 fix a character was ⭠ U+2B60 now  U+E0A0
README of agnoster and bobthefish
2014-07-13 23:57:41 -04:00
Bruno Pinto
cd78009ace Merge pull request #180 from syl20bnr/macosx_compatibility 2014-07-09 18:17:38 -03:00
syl20bnr
c137a4f1b1 Mac OSX support for syl20bnr theme 2014-07-09 18:17:26 -03:00
Bruno Pinto
ef0f1f8c40 adds dashing to bundled commands 2014-07-09 18:14:41 -03:00
Bruno
907f7f5ff0 Merge pull request #181 from schmitzjake/master
removed deprecation warning, vi-mode in fish not yet implemented
2014-07-09 18:13:49 -03:00
Jake Schmitz
7c1d37eafd removed deprecation warning, vi-mode in fish not yet implemented 2014-07-06 13:52:23 -07:00
Bruno
f678dedc49 Merge pull request #173 from jhillyerd/proxy
Bug fix: Don't auto-set proxy variables if proxy_host unset
2014-06-24 01:31:43 -03:00
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.
2014-06-15 15:03:59 -07:00
Bruno Pinto
0bfc97953e Merge pull request #166 from jhillyerd/yimmy 2014-06-11 16:36:12 -03:00
James Hillyerd
8d119cf6de Missing semicolon after begin statement 2014-06-11 16:33:13 -03:00
James Hillyerd
5544653913 Move screnshot to Github pull request 2014-06-11 16:33:12 -03:00
James Hillyerd
d7b7525f78 Add screenshot to README 2014-06-11 16:33:12 -03:00
James Hillyerd
9eb6977799 Screenshot 2014-06-11 16:33:12 -03:00
James Hillyerd
4c60b6adf7 Add LS_COLORS to theme 2014-06-11 16:33:12 -03:00
James Hillyerd
3c152395a2 Make more fish like
- Cache hostname & prompt char
- Use > instead of %
2014-06-11 16:33:12 -03:00
James Hillyerd
ad626cb7fa Use __fish_git_prompt 2014-06-11 16:33:12 -03:00
James Hillyerd
1e04277352 Update README 2014-06-11 16:33:12 -03:00
James Hillyerd
e581bbb01b Add yimmy theme 2014-06-11 16:33:12 -03:00
Bruno Pinto
b2003fccbb Merge pull request #168 from jhillyerd/proxy 2014-06-11 16:31:59 -03:00
James Hillyerd
f5d3109d86 OS X head command does not support - argument for STDIN 2014-06-11 16:29:56 -03:00
James Hillyerd
4346f6b365 Removed NO_PROXY from README.md 2014-06-11 16:29:56 -03:00
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
2014-06-11 16:29:56 -03:00
James Hillyerd
4682480ea6 Initial commit of proxy plugin 2014-06-11 16:29:56 -03:00
Bruno Pinto
ec34dbdc9c deprecating vi-mode plugin 2014-06-11 13:09:13 -03:00
Bruno Pinto
d24bc6f074 deprecating rake plugin 2014-06-11 13:08:07 -03:00
Bruno Pinto
c32afc6918 Merge pull request #169 from rominf/bak 2014-06-11 13:01:00 -03:00
Roman Inflianskas
6c45d6bc2a bak plugin: add help on 0 arguments 2014-06-11 13:00:50 -03:00
Roman Inflianskas
33b5d64e7f bak plugin: bak renamed to mvbak, cpbak added 2014-06-11 13:00:50 -03:00
Roman Inflianskas
7258977424 add bak plugin 2014-06-11 13:00:50 -03:00
Bruno Pinto
b616d17759 Merge pull request #163 from JeanMertz/plugin-chruby 2014-06-10 23:06:03 -03:00
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`.
2014-06-10 23:05:47 -03:00
Bruno
060c730386 Merge pull request #167 from syl20bnr/add-support-native-vi-mode-support
Add support for upcoming fish shell native vi mode
2014-06-10 22:59:05 -03:00
syl20bnr
2c6cde92b3 Add support for upcoming fish shell native vi mode 2014-06-04 23:28:57 -04:00
Bruno Pinto
07789b763a Merge pull request #162 from bobthecow/master 2014-05-14 17:48:20 -03:00
Justin Hileman
98ac1baaad Fix bold flags leaking into prompt 2014-05-14 17:48:06 -03:00
Justin Hileman
8b66273236 Namespace all the bobthefishes. 2014-05-14 17:48:06 -03:00
Bruno Pinto
3de8d837ec Merge pull request #161 from CADBOT/master 2014-05-14 17:06:58 -03:00
CADBOT
4c476a64b4 Add puma to bundled commands list 2014-05-14 17:06:32 -03:00
Bruno
376ae33831 Merge pull request #160 from bobthecow/master
Minor updates for bobthefish
2014-05-14 14:00:14 -03:00
Justin Hileman
563153e667 Add an explicit copyright notice for bobthefish. 2014-05-14 12:51:52 -04:00
Justin Hileman
11087ce22d Fix theme function descriptions. 2014-05-14 12:50:14 -04:00
Bruno
7015ed5ee4 Typo. 2014-05-10 11:31:03 -03:00
Bruno
2ab14365d7 Merge pull request #155 from CADBOT/master
Add a vundle plugin similiar to that found in oh-my-zsh
2014-05-09 12:34:39 -03:00