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;
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:
- Which
oh-my-zsh
plugin is providing this tab-completion functionality? - How do I tell
antigen
to only load the above plugin fromoh-my-zsh
and nothing else?
zsh oh-my-zsh
add a comment |
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:
- Which
oh-my-zsh
plugin is providing this tab-completion functionality? - How do I tell
antigen
to only load the above plugin fromoh-my-zsh
and nothing else?
zsh oh-my-zsh
add a comment |
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:
- Which
oh-my-zsh
plugin is providing this tab-completion functionality? - How do I tell
antigen
to only load the above plugin fromoh-my-zsh
and nothing else?
zsh oh-my-zsh
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:
- Which
oh-my-zsh
plugin is providing this tab-completion functionality? - How do I tell
antigen
to only load the above plugin fromoh-my-zsh
and nothing else?
zsh oh-my-zsh
zsh oh-my-zsh
edited 2 days ago
DarthPaghius
asked Apr 11 at 21:19
DarthPaghiusDarthPaghius
297211
297211
add a comment |
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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