The auto-completion files are missing

Asked by Guilherme

The following directory is missing:

https://github.com/jarun/googler/tree/master/auto-completion

This folder contains some files to complete options related to googler for bash, zsh, etc.

Should we download the missing files manually?

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu googler Edit question
Assignee:
No assignee Edit question
Solved by:
Guilherme
Solved:
Last query:
Last reply:
Revision history for this message
Manfred Hampl (m-hampl) said :
#1

I suggest that you create a bug report to request from the developers that the autocomplete file(s) be included in the package.

As a workaround you could of course try a manual download.

Revision history for this message
Guilherme (internet-guilherme) said :
#2

Thank you Manfred. If more users complain about it I think we can create a bug and request it.

For now I solved my problem just using zgen (a plugin manager for zsh) and put:

It is very practical to solve this kind of tasks:

# load zgen
source /usr/share/zgen/zgen.zsh # from Ubuntu package (apt install zgen)

# if the init scipt doesn't exist
if ! zgen saved; then

    # specify plugins here
    zgen load jarun/googler auto-completion/zsh

    # generate the init script from plugins above
    zgen save
fi