0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
Commit graph

5377 commits

Author SHA1 Message Date
Marc Cornellà
b45e0f4836
dash: simplify completion logic 2019-10-07 17:08:38 +02:00
Marc Cornellà
e0bc646993
dash: add README (#8221) 2019-10-07 17:04:55 +02:00
Marc Cornellà
357336bfb3
Remove redundant section and document keyword args 2019-10-07 17:04:31 +02:00
Michael C
4b65f439e2 docs: add README.md for Dash plugin 2019-10-07 07:08:17 +02:00
Alex Morozoff
dd0ade161c
Create README.md
Added README for UFW plugin issue: [Good first PR] Add READMEs to undocumented plugins #7175
2019-10-06 15:24:25 -04:00
Erwan ROUSSEL
53d987346f
Create README.md 2019-10-05 11:30:21 +02:00
Erwan ROUSSEL
e1cb349ffe
Update README.md 2019-10-05 11:14:12 +02:00
Erwan ROUSSEL
1be840b831
Create README.md 2019-10-05 11:05:46 +02:00
Shubham Kamath
3848102a5e terminitor: add README (#8197) 2019-10-03 13:55:07 +02:00
Zach Whitten
c60371a829 rebar: add README (#8198) 2019-10-03 13:52:50 +02:00
Marc Cornellà
d9bb732eac
rvm: add README (#8199) 2019-10-03 13:52:01 +02:00
Nicholas Meriano
ff23aa0bf9 n98-magerun: add README (#8200) 2019-10-03 13:51:17 +02:00
Zach Whitten
188eff0653 Adding README for rvm 2019-10-02 20:30:22 -04:00
Rexben
ae0de1135d cakephp3: add README (#8196) 2019-10-02 22:31:28 +02:00
Ekunola Ezekiel
4b8f4d529e yii: add README (#8194) 2019-10-02 18:58:15 +02:00
Marc Cornellà
1a6480e486
bundler: add rubocop to bundled_commands (#8169) 2019-10-02 18:55:47 +02:00
David Shaffer
372bb48cee
Add rubocop to bundler readme 2019-10-02 11:01:16 -04:00
David Shaffer
fc9093b745
Add rubocop to bundled_commands 2019-10-02 11:01:16 -04:00
Marc Cornellà
e38099de96 sublime: ignore wslpath errors if C drive is missing 2019-10-02 13:10:36 +02:00
Marc Cornellà
bf0cf4eb1e
yarn: add Yarn Workspace aliases (#7491) 2019-10-01 22:24:48 +02:00
14nrv
f32b30277d yarn: add yd as yarn dev alias (#7663) 2019-10-01 22:24:00 +02:00
Zach Whitten
77ad69e080 jruby: add README (#8190) 2019-10-01 21:21:05 +02:00
Caleb Williams
b8cfa0c77a
Update README: include Yarn workspace shortcuts 2019-10-01 14:11:59 -05:00
Marc Cornellà
a6d71ddadb
Update README with up-to-date platform requirements
Co-authored-by: Emil Engler <me@emilengler.com>
Closes #8157
2019-10-01 21:11:18 +02:00
Zach Whitten
ec7ef7eed1 lein: add README (#8189) 2019-10-01 20:10:11 +02:00
Marc Cornellà
bb6ae70b92
fzf: add support for debian packages (#8001) 2019-10-01 13:34:13 +02:00
Sukin Kumar K
51f0eaad61 Add README for thor and pip plugins (#8185) 2019-10-01 13:13:18 +02:00
David Woodward
8bfeb3759c oc: add README (#8188) 2019-10-01 13:02:28 +02:00
Rhuan Oliveira
f763244e3b autoenv: add README (#8184) 2019-10-01 12:56:41 +02:00
Marc Cornellà
86dd1a480a
react-native: add aliases for newer iPhones (#8170)
Added aliases for iPhone 11, 11 Pro, and 11 Pro Max
2019-09-30 19:49:59 +02:00
Marc Cornellà
487f0af412
Fix table alignment 2019-09-30 19:49:09 +02:00
Kevin
2004550a58
react-native: add aliases for newer iPhones to Doc
Added aliases for iPhone 11, 11 Pro, 11 Pro Max to the Document.
2019-09-25 01:03:08 +08:00
KevinHu2014
ccee223aed react-native: add aliases for newer iPhones
Added aliases for iPhone 11, 11 Pro, 11 Pro Max
2019-09-25 00:58:35 +08:00
Andrei Lesnitsky
f9e7c45a48 Add flutter plugin (#8150) 2019-09-24 14:46:38 +02:00
Franco Catena
be9160ef90 gcloud: add search path for Arch Linux (#8164) 2019-09-21 23:11:25 +02:00
Ian Chesal
6cfaa07627 Add gcloud plugin (#8144)
* A gcloud plugin

This PR addresses issue #6205

This adds support for loading completion for the Google Cloud SDK
command line tools. It searches the known paths for an SDK and loads the
provided completion if it is found. Users can supply a custom location
for the SDK by setting `CLOUDSDK_HOME` in their `zshrc` before loading
oh-my-zsh plugins.

* Canoncial zsh and some safe guards

Based on a PR review from mcornella. All off this has now been tested
on the following variants:

  - macOS 10.14.6 - Homebrew
  - macOS 10.14.6 - Custom install
  - Ubuntu 16.04.6 LTS - apt install
  - Ubuntu 18.04.3 LTS - apt install
  - Ubuntu 18.04.3 LTS - snap classic install
  - CentOS 7 - yum install
2019-09-20 13:58:35 +02:00
Marc Cornellà
095d56b5ea Fix WSL check for WSL 2 and simplify nohup in open_command
WSL 2 changes the output of `uname -r`. For instance,

  WSL 1: 4.4.0-18980-Microsoft
  WSL 2: 4.19.67-microsoft-standard

Since WSL 2 lowercases the M, we can match for the rest of the string
which remains lowercase throughout both versions. Another option would
be to match for both upper- and lower-case Ms, like that:

  $(uname -r) = *[Mm]icrosoft*

Fixed use of nohup in open_command where it was only necessary for
xdg-open (and actually harmful for cmd.exe in WSL 2). The current logic
is simpler and more future-proof.
2019-09-19 16:20:02 +02:00
nv035674
32338fd40c robbyrussell: restore prompt spacing (#8148) 2019-09-13 23:30:17 +02:00
Marc Cornellà
576e0992ca z: update to latest version (e77e938)
Closes #8145

Co-authored-by: GHPS <GHPS@users.noreply.github.com>
2019-09-13 11:44:20 +02:00
Marc Cornellà
093b56a7d7
git: fix gtl alias argument
Fixes the error `no matches found` because the argument is not quoted.
See https://github.com/robbyrussell/oh-my-zsh/pull/7629#issuecomment-531151821
2019-09-13 11:20:20 +02:00
Jonas
ddd359dd66 kube-ps1: add a note where to put the PROMPT=... line (#8142) 2019-09-11 15:54:56 +02:00
Marc Cornellà
fd4571d1b0 installer: allow chsh to work in termux 2019-09-08 21:35:45 +02:00
Marc Cornellà
f9e133b88a
gitfast: fix error in git-prompt.sh (#8132)
An error was thrown (`bash: [: =: unary operator expected`) when using the __git_ps1_colorize_gitstring function outside of the one place it's called (line 512), because the "detached" variable was not quoted, and was unset.
2019-09-08 20:29:43 +02:00
Marc Cornellà
4fb50b3333
Unquote yes in conditional expressions for style consistency 2019-09-08 20:28:59 +02:00
Prajjwal Singh
229a1c9719 gitfast: update completions (#8130)
Includes completions for `git switch`.
2019-09-08 16:16:00 +02:00
Marc Cornellà
101ea87232 ssh-agent: check if ssh-add -l was successful 2019-09-08 16:07:06 +02:00
Hanjiang Yu
c44569f06e robbyrussell: remove local variable (#8131)
Now it can be sourced in a function, like zplug.
2019-09-08 15:07:33 +02:00
Sean Collins
9c3e3ae5e4 Change description for Evan's theme to something neutral (#6304) 2019-09-08 15:05:20 +02:00
Marc Cornellà
2b4d72322b
debian: fix bad function definitions (#8129)
* Fix bad function definitions in Debian plugin

There appears to be a definition issue for some functions/aliases which
result in the following errors when sourcing .zshrc:

```
/home/username/.oh-my-zsh/plugins/debian/debian.plugin.zsh:75: defining function based on alias `abd'
/home/username/.oh-my-zsh/plugins/debian/debian.plugin.zsh:75: parse error near `()'
```

Fixes #7986

* Update syntax on the remaining functions
2019-09-08 14:59:50 +02:00
Marc Cornellà
a870fee6a7
Update syntax on the remaining functions 2019-09-08 14:58:46 +02:00