Skip to main content
added 174 characters in body
Source Link
Gilles 'SO- stop being evil'
  • 865.9k
  • 205
  • 1.8k
  • 2.3k

Don't call compinit. That's all you need to do. You might have the call in your .zshrc file, or perhaps another dotfile, or perhaps you source a plugin that calls it. Find out where it gets called and then remove the call. If compinit never gets called, then you'll get the old skool completion system instead.

If you can't find where compinit is called, try running zsh -x 2>zsh.log (exit the shell as soon as you see the prompt) then look for the compinit call in zsh.log

Do I need zsh/complete and zsh/computil for normal completion to work?

Yes, you do need zsh/complete and zsh/computil, if you want any completion at all.

Don't call compinit. That's all you need to do. You might have the call in your .zshrc file, or perhaps another dotfile, or perhaps you source a plugin that calls it. Find out where it gets called and then remove the call. If compinit never gets called, then you'll get the old skool completion system instead.

Do I need zsh/complete and zsh/computil for normal completion to work?

Yes, you do need zsh/complete and zsh/computil, if you want any completion at all.

Don't call compinit. That's all you need to do. You might have the call in your .zshrc file, or perhaps another dotfile, or perhaps you source a plugin that calls it. Find out where it gets called and then remove the call. If compinit never gets called, then you'll get the old skool completion system instead.

If you can't find where compinit is called, try running zsh -x 2>zsh.log (exit the shell as soon as you see the prompt) then look for the compinit call in zsh.log

Do I need zsh/complete and zsh/computil for normal completion to work?

Yes, you do need zsh/complete and zsh/computil, if you want any completion at all.

added 256 characters in body
Source Link
Marlon Richert
  • 4.3k
  • 11
  • 38

Don't call compinit. That's all you need to do. You might have the call in your .zshrc file, or perhaps another dotfile, or perhaps you source a plugin that calls it. Find out where it gets called and then remove the call. If compinit never gets called, then you'll get the old skool completion system instead.

Do I need zsh/complete and zsh/computil for normal completion to work?

Yes, you do need zsh/complete if you want the old style of completion. Without it, you won't get any completion at all.

and zsh/computil, on the other hand, is required only for the "new" (circa 2000)if you want any completion systemat all.

Don't call compinit. That's all you need to do. You might have the call in your .zshrc file, or perhaps another dotfile, or perhaps you source a plugin that calls it. Find out where it gets called and then remove the call. If compinit never gets called, then you'll get the old skool completion system instead.

Do I need zsh/complete and zsh/computil for normal completion to work?

Yes, you do need zsh/complete if you want the old style of completion. Without it, you won't get any completion at all.

zsh/computil, on the other hand, is required only for the "new" (circa 2000) completion system.

Don't call compinit. That's all you need to do. You might have the call in your .zshrc file, or perhaps another dotfile, or perhaps you source a plugin that calls it. Find out where it gets called and then remove the call. If compinit never gets called, then you'll get the old skool completion system instead.

Do I need zsh/complete and zsh/computil for normal completion to work?

Yes, you do need zsh/complete and zsh/computil, if you want any completion at all.

added 256 characters in body
Source Link
Marlon Richert
  • 4.3k
  • 11
  • 38

Don't call compinit. That's all you need to do. You might have the call in your .zshrc file, or perhaps another dotfilesdotfile, or perhaps you source a plugin that calls it. Find out where it gets called and then remove the call. If compinit never gets called, then you'll get the old skool completion system instead.

Do I need zsh/complete and zsh/computil for normal completion to work?

Yes, you do need zsh/complete if you want the old style of completion. Without it, you won't get any completion at all.

zsh/computil, on the other hand, is required only for the "new" (circa 2000) completion system.

Don't call compinit. That's all you need to do. You might have the call in your .zshrc file, or perhaps another dotfiles, or perhaps you source a plugin that calls it. Find out where it gets called and then remove the call. If compinit never gets called, then you'll get the old skool completion system instead.

Don't call compinit. That's all you need to do. You might have the call in your .zshrc file, or perhaps another dotfile, or perhaps you source a plugin that calls it. Find out where it gets called and then remove the call. If compinit never gets called, then you'll get the old skool completion system instead.

Do I need zsh/complete and zsh/computil for normal completion to work?

Yes, you do need zsh/complete if you want the old style of completion. Without it, you won't get any completion at all.

zsh/computil, on the other hand, is required only for the "new" (circa 2000) completion system.

Source Link
Marlon Richert
  • 4.3k
  • 11
  • 38
Loading