Ryan Styrczula
df9cf72396
plugins/git: Fix gbda
trying to delete worktree branches
...
Git learned to add a `+` in front of branches that are
checked out in other worktrees.
See: 745f681289/Documentation/RelNotes/2.23.0.txt (L252-L256)
2019-08-23 11:08:20 -04:00
Vignesh Balasubramaniam
caf0bfa046
ubuntu: fix aglu to list available upgrades ( #8082 )
2019-08-23 16:58:21 +02:00
Marc Cornellà
3e0e9136cc
homestead: change key string for getting command list ( #8008 )
2019-08-23 13:37:28 +02:00
Pavel Omelchenko
246e7832ef
feature: add condition for regular expression
2019-08-22 12:00:31 +03:00
Julien Janvier
de3b14cf69
git: add aliases for git switch and restore ( #8089 )
2019-08-20 12:11:38 +02:00
Matthew Armand
43ed0b455e
af-magic: add hg prompt and tweak virtualenv info ( #8056 )
...
- Add mercurial support to af-magic, so now the vcs prompt will show up in either a git or hg repository
- The virtualenv prompt was white and bumped up against the user@hostname output
- Fixed that so its green (which I thought highlighted it more thematically) and has a space before user@hostname
2019-08-19 18:54:49 +02:00
Marc Cornellà
e604eaf55e
lib: delete LC_CTYPE locale setting which causes problems
...
Fixes #7942
2019-08-19 18:17:17 +02:00
Kirill Pinchuk
1908f7bddc
fabric: support fabric 2+ completion ( #8010 )
2019-08-19 18:12:53 +02:00
Matthew Turney
8634d9542a
Add git-escape-magic plugin ( #2847 )
2019-08-19 17:57:19 +02:00
SomeDer
90a0de4698
Add alias-finder plugin ( #7768 )
2019-08-19 17:53:13 +02:00
SomeDer
97c0d0a563
Allow plugins sudo and thefuck to be loaded before vi-mode ( #8087 )
2019-08-19 12:14:22 +02:00
Marc Cornellà
c4c620adcd
meta: add DEBUG_ACTIONS flag to PR triage action
2019-08-18 15:13:46 +02:00
Marc Cornellà
28232904be
git-auto-fetch: override zle-line-init only if it exists
2019-08-13 18:19:07 +02:00
Marc Cornellà
4974143745
meta: move if condition on workflow to steps
...
Provisional measure due to "Unexpected value 'if'" error. See https://github.community/t5/GitHub-API-Development-and/jobs-lt-job-id-gt-if-not-working/m-p/28980
2019-08-13 15:10:15 +02:00
Marc Cornellà
d8ad4e902c
meta: convert workflow file to GitHub Actions v2 yml syntax
2019-08-13 14:15:14 +02:00
Jisse Reitsma
40fafe0f59
n98-magerun: support magerun for Magento 2 ( #7950 )
2019-08-07 20:16:25 +02:00
Marc Cornellà
2156b4c081
colored-man-pages: add option to color any help command ( #7173 )
...
This allows you to use `colored git log --help` for example, to get
colored output.
2019-08-07 20:10:54 +02:00
Marc Cornellà
89366be43f
Revert "agnoster: fix VIRTUAL_ENV_DISABLE_PROMPT logic ( #8050 )" ( #8061 )
...
This reverts commit 59c1ec80aa
.
2019-08-06 18:01:32 +02:00
Iulian Onofrei
26aad59779
Add README file
2019-08-04 00:33:40 +03:00
Jack Brown
6d2221e697
frontend-search: add duckduckgo as an option for fallback search ( #7973 )
2019-07-31 09:45:54 +02:00
Rocky
59c1ec80aa
agnoster: fix VIRTUAL_ENV_DISABLE_PROMPT logic ( #8050 )
...
Fixes #7985
2019-07-31 09:23:50 +02:00
Gopal9816
9817e1e7ff
common-aliases: add README ( #8039 )
2019-07-27 14:09:00 +02:00
PLANET ARGON
508cba2fc2
Removing plugin that was named after an external tool, which carries a history as a racist phrase. Was reported by a user of OMZ who shared some background on the terminology and how it made them feel. ( #8027 )
2019-07-22 07:28:33 -07:00
Pavel Omelchenko
783dd1504f
change key string
2019-07-17 15:17:34 +03:00
Ilya Gorski
0565251c3b
Unset all local functions after running them
2019-07-17 02:43:00 +03:00
Ilya Gorski
b90f76c141
fzf: Adding support for debian packages
2019-07-15 00:40:28 +03:00
Robert Estelle
d81cd753e0
clipboard: Fix bad expansion of exit-code test
2019-07-14 12:56:51 -04:00
Robert Estelle
841008c947
clipboard: Fix tmux clipcopy after testing
...
Tmux must have special handling for /dev/stdin since it's managing the
terminal itself. This was tested with tmux-2.9a on macOS.
2019-07-14 12:53:30 -04:00
Robert Estelle
d71d3d9905
clipboard: Fix "cilppaste" -> "clippaste" typo
2019-07-14 12:52:47 -04:00
Marc Cornellà
17f4cfca99
af-magic: make separator window-size-aware ( #7739 )
2019-07-13 12:48:10 +02:00
Robert Estelle
01e934d634
clipboard: Add support for several more clipboards
...
This implements essentially the same heuristic as neovim, with the additional
(existing) special support for Cygwin.
See: e682d799fa/runtime/autoload/provider/clipboard.vim (L55-L121)
- pbcopy, pbpaste (macOS)
- cygwin (Windows running Cygwin)
- wl-copy, wl-paste (if $WAYLAND_DISPLAY is set)
- xclip (if $DISPLAY is set)
- xsel (if $DISPLAY is set)
- lemonade (for SSH) https://github.com/pocke/lemonade
- doitclient (for SSH) http://www.chiark.greenend.org.uk/~sgtatham/doit/
- win32yank (Windows)
- tmux (if $TMUX is set)
2019-07-12 17:45:57 -04:00
Robert Estelle
956ca639bb
clipboard: Avoid unnecessary re-detection each time
...
Previously, OS detection would happen on each invocation. This makes it
happen once (unless it fails, in which case it will try again on the
next invocation).
This has the additional benefit of localizing the platform-specific
checks and commands, too, versus spreading them out in separate
functions.
2019-07-12 17:45:57 -04:00
Robert Estelle
d855547661
clipboard: Reduce unnecessary special-casing on stdin
...
Ideally the parameter would just be removed-users could always
just do "clipcopy < some-file". but removing the parameter would break
backwards compatibility.
In any case, this simplifies the logic considerably.
2019-07-12 17:45:57 -04:00
Mark Coleman
29fb617e6b
readme: document oneliner unattended installation command ( #7983 )
...
The original suggestion for an unattended install downloads the installation script to a file, then runs that file with the --unattended argument. The install.sh file would be left behind after the suggested command was run.
This change passes the --unattended argument directly into sh. So, it's a nice one-liner like the default installation script, and it doesn't leave a dangling install.sh script.
2019-07-12 14:16:00 +02:00
Adriaan Knapen
6cb98eda15
git: add missing grev alias to README ( #7984 )
2019-07-11 20:42:28 +02:00
Erik Demaine
902e3172c9
Avoid error messages when there is no job
2019-07-07 10:48:36 -04:00
Erik Demaine
c1446b4750
Automatic title: Replace fg with description from jobs
2019-07-06 12:10:30 -04:00
Robby Russell
b259cdf7e7
s/might/may
...
After wandering into a few articles that discuss the difference between might and may...opting for may.
2019-07-01 08:01:24 -07:00
Jackson Delahunt
c7a7b70e07
git-auto-fetch: silence stderr output ( #7970 )
...
Redirect stderr to avoid printing errors to the console when the ssh key is not
unlocked.
2019-07-01 15:10:59 +02:00
Jacky Wu
7b2c4327e7
golang: add missing gom alias to README ( #7961 )
2019-06-27 18:49:00 +02:00
tom-apfm
5f743e1a84
terraform: update README ( #7934 )
...
Add better usage instructions for the plugin which actually work
2019-06-26 15:20:41 +02:00
Jason Schwerberg
c105c04b6b
kubectl: add statefulset aliases ( #7826 )
2019-06-15 20:49:33 +02:00
Marc Cornellà
fb43df128f
colorize: add style environment variable ( #7635 )
2019-06-15 20:48:45 +02:00
Nicholas Wehr
fec2e56bc9
adding gatsby command set ( #7831 )
2019-06-15 10:54:19 -07:00
Sung Won Cho
5f18dbf895
Add a completion plugin for dnote ( #7885 )
2019-06-15 10:52:22 -07:00
Robby Russell
36e13f4803
Add PersistentVolumeClaim support to kubectl plugin ( #7827 )
...
Just add aliases for PVC actions.
2019-06-15 10:49:41 -07:00
SomeDer
f992d434ec
git: add git revert alias ( #7841 )
...
* git: add `alias grev="git revert"`
* Swapping double for single quotes
Matching the conventions in the plugin
2019-06-15 10:47:23 -07:00
Crackpot
9060c1ddae
crcandy: use 24h format in prompt ( #7926 )
2019-06-14 14:46:08 +02:00
Viktor Fonic
078f64dcf9
rails: fix typo in README ( #7923 )
2019-06-12 19:45:43 +02:00
Marc Cornellà
69f37800be
ubuntu: plugin cleanup and rename of ag alias to age ( #7700 )
...
* Clean up plugin and README
* Rename ag to age to avoid conflict with The Silver Searcher
Fixes #3866
2019-06-11 15:05:55 +02:00