Commit Graph

267 Commits (e2d9ad8ff4d6e2d0094b49d97b520631b62ea933)

Author SHA1 Message Date
Roman Inflianskas feff0bb89d [dpaste] Fixed file pasting with option -t 10 years ago
Roman Inflianskas 4aedc2917f [dpaste] Underscoring all private variables and functions 10 years ago
Roman Inflianskas 9ce45f5f38 [dpaste] Add "expires" option 10 years ago
Roman Inflianskas a58c498362 [dpaste] Add dpaste plugin 10 years ago
Bruno Pinto 02529d7aca correctly adding sorted brew paths 10 years ago
Roman Inflianskas 81c912731d [bak] Fix tests 10 years ago
Bruno Pinto c46b7d4308 removing old commented out code 10 years ago
CodeFalling 83cef134f2 move git-flow completions to completions folder 10 years ago
CodeFalling dbd2637f6e new plugin:git-flow 10 years ago
Justin Hileman fa022cc8cd Add local-config plugin.
Support per-user, per-host, and per-platform custom configuration files.
10 years ago
Bruno Pinto 28b9612acf replace plugin 10 years ago
CodeFalling 691a9a2bc9 new plugin:better alias 10 years ago
Bruno Pinto fdf3793b60 removing deprecated rake plugin 10 years ago
Bruno Pinto 4b3087d388 adding deprecation warning to autojump plugin 10 years ago
Jean Mertz e83c710ffe Rewrite `bundle exec` wrapper to be more robust 10 years ago
Michele Gerarduzzi bdf8c26770 Improve syntax and uniform style for plugins’ README 10 years ago
Michele Gerarduzzi d7d1ef5831 Add support for ST and ST3 installations inside `~/Applications` on OS X 10 years ago
iven 51a86eaa1a Add `gem` plugin 10 years ago
iven 5e876ee56b Add `android_sdk` plugin 10 years ago
iven 8773b12c2d Add `ccache` plugin 10 years ago
iven 0fc0b2d09e Add `xdg` plugin 10 years ago
Jean Mertz 97ac414448 Allow to pass any arguments to z
before:

```
$ z --help
12         /Users/Jean/Dropbox
12         /Users/Jean/work

$ z work
/Users/Jean/work
```

after:

```
z --help
z [-chlrtx] args

$ z work
/Users/Jean/work
```
10 years ago
Roman Inflianskas acf3206297 bak plugin: fixed directories handling 10 years ago
Roman Inflianskas 07860bc556 bak plugin: tabs -> spaces 10 years ago
Roman Inflianskas 5b861f5c93 bak plugin: tests added 10 years ago
Roman Inflianskas c2c69a91e7 bak plugin: unbak -> unmvbak, uncpbak added 10 years ago
Roman Inflianskas d9aece92c8 bak plugin: add unbak function (inverse to mvbak) 10 years ago
Charles B Johnson 8dcd3e8027 Add plugin for using nodenv. 10 years ago
Celso Miranda e2d8e7a04d add sublime text 3 support for linux
now it works with sublime 3 on arch linux
10 years ago
Nils Stål 812952d1b9 Use https in gi plugin. Issue #216 10 years ago
Peter Armstrong ecf1af6228 rvm plugin fix #217 - removed extra | 10 years ago
Peter Armstrong eca1617841 rvm plugin fix #217 10 years ago
Brian 723f6df96d removed 'bu' and 'bi' from bunder plugin 10 years ago
jeremiejig f94dc43999 typo 10 years ago
jeremiejig 261c3a1503 adding ref to mc in README 10 years ago
jeremiejig 48d0a05042 plugin mc, wrapper to use a shell compatible with mc 10 years ago
Roman Inflianskas 1335503cd6 bak: fixed directory handling 10 years ago
Alexander Grigoriev 7169901224 marks output columnized 10 years ago
Alex Farrell 06086ca17a Add peco plugin 10 years ago
James Hillyerd a42e564fa2 Add README.md for gi 10 years ago
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
10 years ago
Bruno Pinto 1e7e712f87 fix #175: add /usr/local/sbin to PATH for brew 10 years ago
Bruno Pinto ef0f1f8c40 adds dashing to bundled commands 10 years ago
Jake Schmitz 7c1d37eafd removed deprecation warning, vi-mode in fish not yet implemented 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
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
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
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
CADBOT 4c476a64b4 Add puma to bundled commands list 11 years ago
CADBOT 50396d581b Add a vundle plugin similiar to that found in oh-my-zsh 11 years ago
Bruno Pinto 1255651348 Workaround for https://github.com/fish-shell/fish-shell/issues/1443 11 years ago
Paul Joannon 01a6736b24 change indentation from 4 to 2 spaces 11 years ago
Paul Joannon 4ef7561cf5 remove README.md frim sprunge plugin 11 years ago
Paul Joannon b5b965f950 add sprunge plugin 11 years ago
Vincent Pizzo ef49f0663f Two spaces as requested 11 years ago
Vincent Pizzo fdfdee2760 Adding gvm plugin 11 years ago
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.
11 years ago
Chris Chua 99dcf2861d fix z path scope 11 years ago
Marek Skrobacki d387e69966 add README file with list of plugins and their short descriptions 11 years ago
Steven Knight eef0fb484f Corrected logic when testing if exists. 11 years ago
Steven Knight 1771eec8e3 Removed unnecessary sudo 11 years ago
Steven Knight d54c53e641 Fixed Indentation problem 11 years ago
Steven Knight 0622fe860f Ported function to zsh 11 years ago
Steven Knight 1df49b6fcd Ported function to zsh 11 years ago
Steven Knight 9e53decf64 Added description 11 years ago
Steven Knight 217bde5994 Ported function to zsh 11 years ago
Steven Knight 8be94d3471 Fixed typo 11 years ago
Steven Knight 5b3f40433e Removed command; it's not necessary. 11 years ago
Steven Knight 572b75dfd9 Fixed incorrect plugin name 11 years ago
Steven Knight 1480c2bfa5 Ported pacman aliases from oh-my-zsh's archlinux plugin.
Added support for having multiple sub-plugins within the archlinux family.
11 years ago
Dylan Garrett a8d5fad488 Silence curl and fix www.gitignore.io API url, which now requires www. 11 years ago
Dylan Garrett 3a6b0f2e8d Use ping's timeout param for OSX compat 11 years ago
Jan Lindblom f66fa8eae6 ndenv plugin for fish. 11 years ago
Francis Lavoie 2dc27421b2 remove python /usr/local/share, inst require anymore by brew 11 years ago
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 11 years ago
Bodo Tasche 37251b3201 added command line completion to jump plugin 11 years ago
Kris Leech 7436fc848a Plugin to start tmux with support for 256 colours 11 years ago
syl20bnr 701600c678 Add vi-mode from Ian Munsie 11 years ago
Charles Thorley d6024ce6e4 Two-space indentation 11 years ago
Charles Thorley 2bf2e10d24 Additional gatekeeping 11 years ago
Charles Thorley f26686a9fc Bug fixes 11 years ago
Charles Thorley ef890addac Merge remote-tracking branch 'upstream/master'
Merging in preparation of a rebase, per maintainer's request.
11 years ago
Joshua Warner 6986fb1c2d Implement subl for Linux (assuming a standard .deb install of v3) 11 years ago
Joshua Warner 373195efd6 Detect / Launch both Sublime Text 2 and 3 11 years ago
Bruno Pinto 04011838ff Closes #95: defining local variable and fixing args check 11 years ago
Bruno Pinto ef24766b0e Closes #81: default to python2 and fallback to python 11 years ago
Mark Derricutt 2038421b99 Updated Sublime Plugin to support version 3
Sublime Version 3 drops the version number from the application path,
so if you enable this, and use 3 - the existing plugin would
silently fail.
11 years ago
Charles Thorley 89655b2edf Actually, let's stick to builtins 11 years ago
Charles Thorley d157cd13cc Removed realpath dependency 11 years ago
Charles Thorley 3b56be3e26 Added jump plugin 11 years ago
Bruno Pinto 62928f9aa5 allowing z plugin to use a custom path 11 years ago
Bruno Pinto 18a33690fe using _append_path function on plugins 11 years ago
Bruno Pinto 00236e5af3 tidying 11 years ago
Kris Leech ac6610df4e Plugin to expand or extract bundled & compressed files [finishes #90] 11 years ago
Konrad Borowski b42782e05e Fix `set $PATH` mistake. 11 years ago
Daniele Sluijters 1564756748 pyenv: Detect $PYENV_ROOT and act accordingly.
This also fixes issues for Homebrew users if the followed the caveat to
set PYENV_ROOT to use the homebrew created directories.
11 years ago
Daniele Sluijters aa096727ad rbenv: Detect $RBENV_ROOT and act accordingly.
Same fix as with pyenv, if RBENV_ROOT is set, use that.

This also fixes issues for Homebrew users if they followed the caveat to
set RBENV_ROOT to use the homebrew created directories.
11 years ago
Nicolas Leclercq b57f62e2fc add plugin to load pyenv 11 years ago
Konrad Borowski 341da0113d Update localhost.load 11 years ago
Konrad Borowski 222757edaa Add port 8001 for SHOUTcast. 11 years ago
Konrad Borowski 9b0369a6cf PHP HTTP server 11 years ago
Lin Jen-Shin e09ce1304f Show rake task descriptions along with the tasks. 11 years ago
Nicolas Leclercq b8a624b453 add plugin to load plenv 11 years ago
Bruno Pinto e38b220e1e Revert "fish has renamed . to source"
As @GlitchMr commented, fish 2.1 has not been released yet and even
then, the command . will only be deprecated, not removed.

This reverts commit 03833fda7b.
11 years ago
Bruno Pinto 03833fda7b fish has renamed . to source 11 years ago
Jonathan Knapp 13582d8d2b test that application exists before trying to call it 11 years ago
Jonathan Knapp 1321ddc844 Added sublime text plugin that passes additional arguments to the app 11 years ago
Erik Kallen 8551cacf50 Added cor theme and emoji clock plugin 11 years ago
ilkosta ab3671906f enabled gi autocomplete and parameters separated by spaces 11 years ago
costa d118eba311 managed multi-user install location for rvm.fish 11 years ago
Bruno Pinto f2be6ff368 removing percol.load file that is no longer necessary 11 years ago
Osamu OKANO 00a2cef9c6 split percol.load into README and percol_select_history.fish 11 years ago
Osamu OKANO f4255727e0 percol plugin 11 years ago
Francis Lavoie 2a7ff8c255 simplified pyclean command 11 years ago
Francis Lavoie 1cf57f83f9 removed empty django.load file 11 years ago
Francis Lavoie 089034b6c6 moved django into plugins, moved djtest into its own file 11 years ago
Francis Lavoie db0eda65bc replaced 4 spaces tabs for 2 spaces tab 11 years ago
Francis Lavoie 02a8a66424 split command in different files 11 years ago
Francis Lavoie d40fe8284c added basic python helper (http server, smtp server, py[co] cleaner and a django helper for the test runner 11 years ago
Matthew Crenshaw 6fa69bee2a check for ruby-version or ruby-gemset, rvmrc is depreciated 11 years ago
Zhuang Ya ded3ad70f8 reformat the indentation 12 years ago
Zhuang Ya 3288478117 gitignore.io cli function for fish ;) 12 years ago
Bruno Pinto 192e4e4a4d ec2 api plugin 12 years ago
Bruno Pinto b7ee9ec0b9 fry plugin 12 years ago
Bruno Pinto 71d79d8111 adding sidekiq to bundled commands list 12 years ago
Kris Leech 94b54094dd Allow http://localhost:$port to be opened in the default browser using either the port number for common ports or `lh` for an arbitrary port. 12 years ago
Kris Leech 388e15f6c5 localhost plugin which opens http://localhost:3000 (and other ports) in the default browser 12 years ago
Bruno Pinto 7bf108b81c simpler support for local npm packages 12 years ago
Bruno Pinto 9caa7af7b8 support for local npm packages when loading shell 12 years ago
Bruno Pinto fadb1fe446 ooops... forgot to remove this line :) 12 years ago
Bruno Pinto d59bd05463 adding support for local npm packages 12 years ago
Bruno Pinto 4cdc45cc56 rails function migrate that will also migrate the test database 12 years ago
Bruno Pinto 53d1c4fa15 Closes #17: removing rbenv rehash from plugin load 12 years ago
Bruno Pinto 39e5f6004d checking plugins paths before adding them to PATH 12 years ago
Bruno Pinto 5cde405bb7 setup z based on PWD variable 12 years ago
Bruno Pinto b99bee0a7a configuring rvm on shell load 12 years ago
Bruno Pinto 14d0391e70 setup rvm based on PWD variable 12 years ago
Bruno Pinto f026e18384 Updating rvm scripts from rubycut/fish-inwater. 12 years ago
Bruno Pinto 6f9d3e10cc including python scripts path on PATH 12 years ago
Bruno Pinto a735b305bd node plugin: prepending node path 12 years ago
Bruno Pinto c06b1c0d9a bundler plugin was not working if the project didn't have bundler 12 years ago
Bruno Pinto 129e13dbc1 initial support for z: "https://github.com/rupa/z" 12 years ago
Bruno Pinto 05b4207a66 automatically loaded files should not have the suffix '.fish' otherwise fish thinks they are functions 12 years ago