Which oh-my-zsh plugin is providing this tab-completion functionality? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) 2019 Community Moderator Election Results Why I closed the “Why is Kali so hard” questionAdd arguments from previous command to zsh completionCancel zsh tab completionZsh completion, enabling shift-tabTab completion of “../” in zshIs there any plugin for zsh or bash that does heuristic filename completion?Zsh: hash directory completionzsh completion by history not workingRemove colors from zsh tab-completionDisable oh-my-zsh tab completion for first command parameter, when it's a directoryPersonalize colored-man-pages zsh plugin colors

List *all* the tuples!

I need to find the potential function of a vector field.

Is above average number of years spent on PhD considered a red flag in future academia or industry positions?

How to motivate offshore teams and trust them to deliver?

Dominant seventh chord in the major scale contains diminished triad of the seventh?

Why is "Captain Marvel" translated as male in Portugal?

What's the purpose of writing one's academic bio in 3rd person?

Why don't the Weasley twins use magic outside of school if the Trace can only find the location of spells cast?

How to do this path/lattice with tikz

3 doors, three guards, one stone

Why is there no army of Iron-Mans in the MCU?

Why is "Consequences inflicted." not a sentence?

iPhone Wallpaper?

Right-skewed distribution with mean equals to mode?

How discoverable are IPv6 addresses and AAAA names by potential attackers?

What are the pros and cons of Aerospike nosecones?

What does the "x" in "x86" represent?

When is phishing education going too far?

How does a Death Domain cleric's Touch of Death feature work with Touch-range spells delivered by familiars?

Why aren't air breathing engines used as small first stages

What is this single-engine low-wing propeller plane?

Is there any avatar supposed to be born between the death of Krishna and the birth of Kalki?

What do you call a phrase that's not an idiom yet?

When to stop saving and start investing?



Which oh-my-zsh plugin is providing this tab-completion functionality?



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
2019 Community Moderator Election Results
Why I closed the “Why is Kali so hard” questionAdd arguments from previous command to zsh completionCancel zsh tab completionZsh completion, enabling shift-tabTab completion of “../” in zshIs there any plugin for zsh or bash that does heuristic filename completion?Zsh: hash directory completionzsh completion by history not workingRemove colors from zsh tab-completionDisable oh-my-zsh tab completion for first command parameter, when it's a directoryPersonalize colored-man-pages zsh plugin colors



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have the following zsh configuration:



autoload -Uz promptinit
promptinit

HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
setopt appendhistory autocd extendedglob nomatch notify
zstyle :compinstall filename '/home/folani/.zshrc'
autoload -Uz compinit
compinit -i -u -C

bindkey "^[[A" history-beginning-search-backward
bindkey "^[[B" history-beginning-search-forward

bindkey -v

#autoload -U edit-command-line
#zle -N edit-command-line
#bindkey '^B' edit-command-line # Opens Vim to edit current command line
#bindkey '^R' history-incremental-search-backward # Perform backward search in command line history
#bindkey '^S' history-incremental-search-forward # Perform forward search in command line history
#bindkey '^P' history-search-backward # Go back/search in history (autocomplete)
#bindkey '^N' history-search-forward # Go forward/search in history (autocomplete)

setopt +o nomatch

# load antigen
source $HOME/.zsh/antigen.zsh

# Load the oh-my-zsh's library.
antigen use oh-my-zsh

# Bundles from the default repo (robbyrussell's oh-my-zsh).
#antigen bundle git
#antigen bundle heroku
#antigen bundle pip
#antigen bundle lein
#antigen bundle command-not-found
#antigen bundle zsh-users/zsh-syntax-highlighting

# Load the theme.
#antigen theme robbyrussell
# antigen theme https://github.com/caiogondim/bullet-train-oh-my-zsh-theme bullet-train

# Tell Antigen that you're done.
antigen apply

#BULLETTRAIN_VIRTUALENV_BG="green"
#BULLETTRAIN_VIRTUALENV_PREFIX=""
#BULLETTRAIN_PROMPT_ORDER=(
# dir
# virtualenv
# time
#)


I'm using antigen for plugin management. As per my understanding, this configuration shouldn't enable anything from oh-my-zsh yet (all the load lines are commented). However it changes the prompt theme to rubyrussel and adds some fancy tab-completeion feature that I really like. So I guess it's actually loading stuff from oh-my-zsh. If I remove the line antigen apply, I get the plain zsh prompt without the theme or aforementioned completion feature.



The tab completion works like this: Say I'm in a directory and there is a file named foo565bar.txt there. If I type 565 and press tab, it will complete it to foo565bar.txt which is very handy for the stuff I'm working with.



So I have two questions:



  1. Which oh-my-zsh plugin is providing this tab-completion functionality?

  2. How do I tell antigen to only load the above plugin from oh-my-zsh and nothing else?









share|improve this question






























    0















    I have the following zsh configuration:



    autoload -Uz promptinit
    promptinit

    HISTFILE=~/.histfile
    HISTSIZE=1000
    SAVEHIST=1000
    setopt appendhistory autocd extendedglob nomatch notify
    zstyle :compinstall filename '/home/folani/.zshrc'
    autoload -Uz compinit
    compinit -i -u -C

    bindkey "^[[A" history-beginning-search-backward
    bindkey "^[[B" history-beginning-search-forward

    bindkey -v

    #autoload -U edit-command-line
    #zle -N edit-command-line
    #bindkey '^B' edit-command-line # Opens Vim to edit current command line
    #bindkey '^R' history-incremental-search-backward # Perform backward search in command line history
    #bindkey '^S' history-incremental-search-forward # Perform forward search in command line history
    #bindkey '^P' history-search-backward # Go back/search in history (autocomplete)
    #bindkey '^N' history-search-forward # Go forward/search in history (autocomplete)

    setopt +o nomatch

    # load antigen
    source $HOME/.zsh/antigen.zsh

    # Load the oh-my-zsh's library.
    antigen use oh-my-zsh

    # Bundles from the default repo (robbyrussell's oh-my-zsh).
    #antigen bundle git
    #antigen bundle heroku
    #antigen bundle pip
    #antigen bundle lein
    #antigen bundle command-not-found
    #antigen bundle zsh-users/zsh-syntax-highlighting

    # Load the theme.
    #antigen theme robbyrussell
    # antigen theme https://github.com/caiogondim/bullet-train-oh-my-zsh-theme bullet-train

    # Tell Antigen that you're done.
    antigen apply

    #BULLETTRAIN_VIRTUALENV_BG="green"
    #BULLETTRAIN_VIRTUALENV_PREFIX=""
    #BULLETTRAIN_PROMPT_ORDER=(
    # dir
    # virtualenv
    # time
    #)


    I'm using antigen for plugin management. As per my understanding, this configuration shouldn't enable anything from oh-my-zsh yet (all the load lines are commented). However it changes the prompt theme to rubyrussel and adds some fancy tab-completeion feature that I really like. So I guess it's actually loading stuff from oh-my-zsh. If I remove the line antigen apply, I get the plain zsh prompt without the theme or aforementioned completion feature.



    The tab completion works like this: Say I'm in a directory and there is a file named foo565bar.txt there. If I type 565 and press tab, it will complete it to foo565bar.txt which is very handy for the stuff I'm working with.



    So I have two questions:



    1. Which oh-my-zsh plugin is providing this tab-completion functionality?

    2. How do I tell antigen to only load the above plugin from oh-my-zsh and nothing else?









    share|improve this question


























      0












      0








      0








      I have the following zsh configuration:



      autoload -Uz promptinit
      promptinit

      HISTFILE=~/.histfile
      HISTSIZE=1000
      SAVEHIST=1000
      setopt appendhistory autocd extendedglob nomatch notify
      zstyle :compinstall filename '/home/folani/.zshrc'
      autoload -Uz compinit
      compinit -i -u -C

      bindkey "^[[A" history-beginning-search-backward
      bindkey "^[[B" history-beginning-search-forward

      bindkey -v

      #autoload -U edit-command-line
      #zle -N edit-command-line
      #bindkey '^B' edit-command-line # Opens Vim to edit current command line
      #bindkey '^R' history-incremental-search-backward # Perform backward search in command line history
      #bindkey '^S' history-incremental-search-forward # Perform forward search in command line history
      #bindkey '^P' history-search-backward # Go back/search in history (autocomplete)
      #bindkey '^N' history-search-forward # Go forward/search in history (autocomplete)

      setopt +o nomatch

      # load antigen
      source $HOME/.zsh/antigen.zsh

      # Load the oh-my-zsh's library.
      antigen use oh-my-zsh

      # Bundles from the default repo (robbyrussell's oh-my-zsh).
      #antigen bundle git
      #antigen bundle heroku
      #antigen bundle pip
      #antigen bundle lein
      #antigen bundle command-not-found
      #antigen bundle zsh-users/zsh-syntax-highlighting

      # Load the theme.
      #antigen theme robbyrussell
      # antigen theme https://github.com/caiogondim/bullet-train-oh-my-zsh-theme bullet-train

      # Tell Antigen that you're done.
      antigen apply

      #BULLETTRAIN_VIRTUALENV_BG="green"
      #BULLETTRAIN_VIRTUALENV_PREFIX=""
      #BULLETTRAIN_PROMPT_ORDER=(
      # dir
      # virtualenv
      # time
      #)


      I'm using antigen for plugin management. As per my understanding, this configuration shouldn't enable anything from oh-my-zsh yet (all the load lines are commented). However it changes the prompt theme to rubyrussel and adds some fancy tab-completeion feature that I really like. So I guess it's actually loading stuff from oh-my-zsh. If I remove the line antigen apply, I get the plain zsh prompt without the theme or aforementioned completion feature.



      The tab completion works like this: Say I'm in a directory and there is a file named foo565bar.txt there. If I type 565 and press tab, it will complete it to foo565bar.txt which is very handy for the stuff I'm working with.



      So I have two questions:



      1. Which oh-my-zsh plugin is providing this tab-completion functionality?

      2. How do I tell antigen to only load the above plugin from oh-my-zsh and nothing else?









      share|improve this question
















      I have the following zsh configuration:



      autoload -Uz promptinit
      promptinit

      HISTFILE=~/.histfile
      HISTSIZE=1000
      SAVEHIST=1000
      setopt appendhistory autocd extendedglob nomatch notify
      zstyle :compinstall filename '/home/folani/.zshrc'
      autoload -Uz compinit
      compinit -i -u -C

      bindkey "^[[A" history-beginning-search-backward
      bindkey "^[[B" history-beginning-search-forward

      bindkey -v

      #autoload -U edit-command-line
      #zle -N edit-command-line
      #bindkey '^B' edit-command-line # Opens Vim to edit current command line
      #bindkey '^R' history-incremental-search-backward # Perform backward search in command line history
      #bindkey '^S' history-incremental-search-forward # Perform forward search in command line history
      #bindkey '^P' history-search-backward # Go back/search in history (autocomplete)
      #bindkey '^N' history-search-forward # Go forward/search in history (autocomplete)

      setopt +o nomatch

      # load antigen
      source $HOME/.zsh/antigen.zsh

      # Load the oh-my-zsh's library.
      antigen use oh-my-zsh

      # Bundles from the default repo (robbyrussell's oh-my-zsh).
      #antigen bundle git
      #antigen bundle heroku
      #antigen bundle pip
      #antigen bundle lein
      #antigen bundle command-not-found
      #antigen bundle zsh-users/zsh-syntax-highlighting

      # Load the theme.
      #antigen theme robbyrussell
      # antigen theme https://github.com/caiogondim/bullet-train-oh-my-zsh-theme bullet-train

      # Tell Antigen that you're done.
      antigen apply

      #BULLETTRAIN_VIRTUALENV_BG="green"
      #BULLETTRAIN_VIRTUALENV_PREFIX=""
      #BULLETTRAIN_PROMPT_ORDER=(
      # dir
      # virtualenv
      # time
      #)


      I'm using antigen for plugin management. As per my understanding, this configuration shouldn't enable anything from oh-my-zsh yet (all the load lines are commented). However it changes the prompt theme to rubyrussel and adds some fancy tab-completeion feature that I really like. So I guess it's actually loading stuff from oh-my-zsh. If I remove the line antigen apply, I get the plain zsh prompt without the theme or aforementioned completion feature.



      The tab completion works like this: Say I'm in a directory and there is a file named foo565bar.txt there. If I type 565 and press tab, it will complete it to foo565bar.txt which is very handy for the stuff I'm working with.



      So I have two questions:



      1. Which oh-my-zsh plugin is providing this tab-completion functionality?

      2. How do I tell antigen to only load the above plugin from oh-my-zsh and nothing else?






      zsh oh-my-zsh






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 2 days ago







      DarthPaghius

















      asked Apr 11 at 21:19









      DarthPaghiusDarthPaghius

      297211




      297211




















          0






          active

          oldest

          votes












          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "106"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f512001%2fwhich-oh-my-zsh-plugin-is-providing-this-tab-completion-functionality%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Unix & Linux Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f512001%2fwhich-oh-my-zsh-plugin-is-providing-this-tab-completion-functionality%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          getting Checkpoint VPN SSL Network Extender working in the command lineHow to connect to CheckPoint VPN on Ubuntu 18.04LTS?Will the Linux ( red-hat ) Open VPNC Client connect to checkpoint or nortel VPN gateways?VPN client for linux machine + support checkpoint gatewayVPN SSL Network Extender in FirefoxLinux Checkpoint SNX tool configuration issuesCheck Point - Connect under Linux - snx + OTPSNX VPN Ububuntu 18.XXUsing Checkpoint VPN SSL Network Extender CLI with certificateVPN with network manager (nm-applet) is not workingWill the Linux ( red-hat ) Open VPNC Client connect to checkpoint or nortel VPN gateways?VPN client for linux machine + support checkpoint gatewayImport VPN config files to NetworkManager from command lineTrouble connecting to VPN using network-manager, while command line worksStart a VPN connection with PPTP protocol on command linestarting a docker service daemon breaks the vpn networkCan't connect to vpn with Network-managerVPN SSL Network Extender in FirefoxUsing Checkpoint VPN SSL Network Extender CLI with certificate

          Cannot Extend partition with GParted The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) 2019 Community Moderator Election ResultsCan't increase partition size with GParted?GParted doesn't recognize the unallocated space after my current partitionWhat is the best way to add unallocated space located before to Ubuntu 12.04 partition with GParted live?I can't figure out how to extend my Arch home partition into free spaceGparted Linux Mint 18.1 issueTrying to extend but swap partition is showing as Unknown in Gparted, shows proper from fdiskRearrange partitions in gparted to extend a partitionUnable to extend partition even though unallocated space is next to it using GPartedAllocate free space to root partitiongparted: how to merge unallocated space with a partition

          NetworkManager fails with “Could not find source connection”Trouble connecting to VPN using network-manager, while command line worksHow can I be notified about state changes to a VPN adapterBacktrack 5 R3 - Refuses to connect to VPNFeed all traffic through OpenVPN for a specific network namespace onlyRun daemon on startup in Debian once openvpn connection establishedpfsense tcp connection between openvpn and lan is brokenInternet connection problem with web browsers onlyWhy does NetworkManager explicitly support tun/tap devices?Browser issues with VPNTwo IP addresses assigned to the same network card - OpenVPN issues?Cannot connect to WiFi with nmcli, although secrets are provided