Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support custom completion script #84

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 40 additions & 7 deletions src/tools/build.jl
Original file line number Diff line number Diff line change
Expand Up @@ -147,17 +147,33 @@ end
function install_completion(m::Module, configs::Configurations.Comonicon)
completions_dir = expanduser(joinpath(configs.install.path, "completions"))
sh = detect_shell()
sh === nothing && return
@info "SHELL detected: $sh"
if !ispath(completions_dir)
mkpath(completions_dir)
end
completion_file = joinpath(completions_dir, "_" * configs.name)

# 1. check if there are custom completion scripts
custom_completions = PATH.deps(m, "completions")
if ispath(custom_completions)
for each in readdir(custom_completions)
if each == "$sh.completion"
@info "custom completion script found: $each"
cp(
joinpath(custom_completions, each), completion_file;
force=true,
follow_symlinks=true,
)
return
end
end
end

# 2. auto generate if nothing found
@info "generating auto-completion script for $sh"
script = completion_script(sh, m)
script === nothing && return

if !ispath(completions_dir)
mkpath(completions_dir)
end

completion_file = joinpath(completions_dir, "_" * configs.name)
@info "writing to $completion_file"
write(completion_file, script)
return
Expand Down Expand Up @@ -297,7 +313,24 @@ function build_completion(m::Module, configs::Configurations.Comonicon)
mkpath(completion_dir)
end

for sh in ["zsh"]
custom_completions = PATH.deps(m, "completions")
shell_with_custom_completion = String[]
if ispath(custom_completions)
for each in readdir(custom_completions)
if endswith(each, ".completion")
@info "custom completion found: $each"
cp(
joinpath(custom_completions, each), joinpath(completion_dir, each);
force=true,
follow_symlinks=true,
)
push!(shell_with_custom_completion, each[1:end-11])
end
end
end

# auto generate supported completions
for sh in setdiff(["zsh"], shell_with_custom_completion)
script = completion_script(sh, m)
script === nothing && continue
write(joinpath(completion_dir, "$sh.completion"), script)
Expand Down
2 changes: 2 additions & 0 deletions src/tools/path.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ function project(m::Module, xs...)
end

project(xs...) = project(Comonicon, xs...)
deps(m::Module, xs...) = project(m, "deps", xs...)

sysimg() = "libcomonicon.$(Libdl.dlext)"
sysimg(name) = "lib$name.$(Libdl.dlext)"


"""
default_exename()

Expand Down