1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-02-13 05:59:46 +08:00

Compare commits

..

No commits in common. "27402e2603b9354f419af3695bad8ff17ed33bac" and "0e1e877ea9182f87b3ab34cbc2ea944b34f5345e" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# Gas plugin # Gas plugin
This plugin adds autocompletion for the [gas](http://ramblingsby.me/gas/) command, This plugin adds autocompletion for the [gas](http://walle.github.com/gas) command,
a utility to manage Git authors. a utility to manage Git authors.
To use it, add `gas` to the plugins array of your zshrc file: To use it, add `gas` to the plugins array of your zshrc file:

View File

@ -6,7 +6,7 @@ function gradle-or-gradlew() {
# taken from https://github.com/gradle/gradle-completion # taken from https://github.com/gradle/gradle-completion
local dir="$PWD" project_root="$PWD" local dir="$PWD" project_root="$PWD"
while [[ "$dir" != / ]]; do while [[ "$dir" != / ]]; do
if [[ -x "$dir/gradlew" ]]; then if [[ -f "$dir/settings.gradle" || -f "$dir/settings.gradle.kts" || -f "$dir/gradlew" ]]; then
project_root="$dir" project_root="$dir"
break break
fi fi