Skip to content

Commit

Permalink
Merge pull request #472 from ViktorHaag/revert-471-ag-past-version-one
Browse files Browse the repository at this point in the history
Revert "fix version logic for major version > 0"
  • Loading branch information
nicoulaj committed Dec 4, 2016
2 parents fd176b1 + 6c61261 commit d170ef1
Showing 1 changed file with 13 additions and 15 deletions.
28 changes: 13 additions & 15 deletions src/_ag
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,14 @@
# -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
# vim: ft=zsh sw=2 ts=2 et
# ------------------------------------------------------------------------------

_ag_version() {
local version
version=( $($words[1] --version) )
version=${${(z)${version[1]}}[2]}
echo $version
version=${version[@]:2:1}
version=( "${(@s/./)version}" )
echo "${version[2]}"
}


# Dynamically build the file type completion
# Modifies the global $AG_OPTS array
_ag_add_file_types() {
Expand All @@ -70,62 +69,61 @@ _ag_add_file_types() {
# Add version appropriate options above base
# Modifies the global $AG_OPTS array
_ag_add_version_opts() {
local ag_version=$(_ag_version)
local minor=$(_ag_version)

if [[ $ag_version > 0.21 ]]; then
if [[ $minor -gt 21 ]];then
_ag_add_file_types
AG_OPTS+=(
'(- 1 *)--list-file-types[list supported filetypes to search]'
'--silent[suppress all log messages, including errors]'
)
fi


if [[ $ag_version > 0.22 ]]; then
if [[ $minor -gt 22 ]];then
AG_OPTS+=(
'(-z --search-zip)'{-z,--search-zip}'[search contents of compressed files]'
)
fi

if [[ $ag_version <= 0.24 ]]; then
if [[ $minor -le 24 ]];then
AG_OPTS+=(
'(-s --case-sensitive)'{-s,--case-sensitive}'[match case sensitively]'
'(--noheading --heading)'{--noheading,--heading}'[print file names above matching contents]'
)
fi
if [[ $ag_version > 0.24 ]]; then
if [[ $minor -gt 24 ]];then
AG_OPTS+=(
'(-s --case-sensitive)'{-s,--case-sensitive}'[Match case sensitively. Default on.]'
'(-H --noheading --heading)'{-H,--noheading,--heading}'[print file names above matching contents]'
'--vimgrep[output results like vim''s, :vimgrep /pattern/g would (report every match on the line)]'
)
fi

if [[ $ag_version > 0.26 ]]; then
if [[ $minor -gt 26 ]];then
AG_OPTS+=(
'(-0 --null --print0)'{-0,--null,--print0}'[separate the filenames with \\0, rather than \\n]'
)
fi

if [[ $ag_version <= 0.27 ]]; then
if [[ $minor -le 27 ]];then
AG_OPTS+=(
'--depth[Search up to NUM directories deep. Default is 25.]:number'
)
fi
if [[ $ag_version > 0.27 ]]; then
if [[ $minor -gt 27 ]];then
AG_OPTS+=(
'(-c --count)'{-c,--count}'[only print the number of matches in each file]'
'--depth[Search up to NUM directories deep, -1 for unlimited. Default is 25.]:number'
'(-F --fixed-strings)'{-F,--fixed-strings}'[alias for --literal for compatibility with grep]'
)
fi

if [[ $ag_version <= 0.28 ]]; then
if [[ $minor -le 28 ]];then
AG_OPTS+=(
'(--no-numbers)--no-numbers[don´t show line numbers]'
)
fi
if [[ $ag_version > 0.28 ]]; then
if [[ $minor -gt 28 ]];then
AG_OPTS+=(
'(--nofilename --filename)'{--nofilename,--filename}'[Print file names. Default on, except when searching a single file.]'
'(--nonumbers --numbers)'{--nonumbers,--numbers}'[Print line numbers. Default is to omit line numbers when searching streams]'
Expand Down

0 comments on commit d170ef1

Please sign in to comment.