Commit Graph

132 Commits

Author SHA1 Message Date
jeremiejig
48d0a05042 plugin mc, wrapper to use a shell compatible with mc 2014-08-10 16:51:34 -03:00
Roman Inflianskas
1335503cd6 bak: fixed directory handling 2014-08-09 21:47:59 +04:00
Alexander Grigoriev
7169901224 marks output columnized 2014-08-01 12:56:06 -03:00
Alex Farrell
06086ca17a Add peco plugin 2014-07-29 10:38:02 +02:00
James Hillyerd
a42e564fa2 Add README.md for gi 2014-07-20 00:40:45 -03:00
James Hillyerd
5829ff0f5a Redesign gitignore plugin
- removed code that fetches completions frim gitignore.io each time fish
  is started -- makes logins slow!
- gi.load becomes gi.fish, only contains gi function
- add _update_gi_completions.fish: fetches list of completions from
  gitignore.io and places it into ~/.config/fish/completions
- modify gi function to accept update-completions argument
2014-07-20 00:40:45 -03:00
Bruno Pinto
1e7e712f87 fix #175: add /usr/local/sbin to PATH for brew 2014-07-16 00:36:31 -03:00
Bruno Pinto
ef0f1f8c40 adds dashing to bundled commands 2014-07-09 18:14:41 -03:00
Jake Schmitz
7c1d37eafd removed deprecation warning, vi-mode in fish not yet implemented 2014-07-06 13:52:23 -07: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
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
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
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
CADBOT
4c476a64b4 Add puma to bundled commands list 2014-05-14 17:06:32 -03:00
CADBOT
50396d581b Add a vundle plugin similiar to that found in oh-my-zsh 2014-05-09 05:43:47 +00:00
Bruno Pinto
1255651348 Workaround for https://github.com/fish-shell/fish-shell/issues/1443 2014-04-30 16:46:53 -03:00
Paul Joannon
01a6736b24 change indentation from 4 to 2 spaces 2014-04-30 16:19:35 -03:00
Paul Joannon
4ef7561cf5 remove README.md frim sprunge plugin 2014-04-30 16:19:35 -03:00
Paul Joannon
b5b965f950 add sprunge plugin 2014-04-30 16:19:35 -03:00
Vincent Pizzo
ef49f0663f Two spaces as requested 2014-04-30 15:20:15 -03:00
Vincent Pizzo
fdfdee2760 Adding gvm plugin 2014-04-30 15:20:14 -03:00
Vincent Pizzo
955c87710a Allowing arguments to be passed to _python
I'm brand new to fish so I'm not sure if this is a fix of if I'm doing something incorrectly.  On fish version 2.1.0 on osx 10.9.2 running pyhttp doesn't start the http server, instead only starts the python shell.  This fixes that issue for me at least.
2014-04-27 18:18:31 -05:00
Chris Chua
99dcf2861d fix z path scope 2014-04-22 12:28:21 -07:00
Marek Skrobacki
d387e69966 add README file with list of plugins and their short descriptions 2014-04-15 13:46:36 +01:00
Steven Knight
eef0fb484f Corrected logic when testing if exists. 2014-02-28 19:29:39 -05:00
Steven Knight
1771eec8e3 Removed unnecessary sudo 2014-02-28 19:29:39 -05:00
Steven Knight
d54c53e641 Fixed Indentation problem 2014-02-28 19:29:39 -05:00
Steven Knight
0622fe860f Ported function to zsh 2014-02-28 19:29:39 -05:00
Steven Knight
1df49b6fcd Ported function to zsh 2014-02-28 19:29:39 -05:00
Steven Knight
9e53decf64 Added description 2014-02-28 19:29:39 -05:00
Steven Knight
217bde5994 Ported function to zsh 2014-02-28 19:29:39 -05:00
Steven Knight
8be94d3471 Fixed typo 2014-02-28 19:29:39 -05:00
Steven Knight
5b3f40433e Removed command; it's not necessary. 2014-02-28 19:29:39 -05:00
Steven Knight
572b75dfd9 Fixed incorrect plugin name 2014-02-28 19:29:39 -05:00
Steven Knight
1480c2bfa5 Ported pacman aliases from oh-my-zsh's archlinux plugin.
Added support for having multiple sub-plugins within the archlinux family.
2014-02-28 19:29:39 -05:00
Dylan Garrett
a8d5fad488 Silence curl and fix www.gitignore.io API url, which now requires www. 2014-02-28 00:08:44 -05:00
Dylan Garrett
3a6b0f2e8d Use ping's timeout param for OSX compat 2014-02-28 00:07:08 -05:00
Jan Lindblom
f66fa8eae6 ndenv plugin for fish. 2014-02-16 07:46:22 -03:00
Francis Lavoie
2dc27421b2 remove python /usr/local/share, inst require anymore by brew 2014-02-16 07:36:57 -03:00
Bruno Pinto
580970644c Fixes #119: rbenv has not released a final version with support to fish yet, so for now, we are cloning the expected end-result 2014-02-16 07:34:05 -03:00
Bodo Tasche
37251b3201 added command line completion to jump plugin 2014-01-20 21:08:37 +01:00
Kris Leech
7436fc848a Plugin to start tmux with support for 256 colours 2014-01-13 19:26:31 +00:00
syl20bnr
701600c678 Add vi-mode from Ian Munsie 2014-01-10 03:56:35 -02:00