Commit 24fbcce0a0767814faf13f6107d95e0ee26846d3

Authored by Shrikant Sharat
1 parent aea2f87bdd

Add comments to bundle-apply, on its need.

It looks like bundle-apply is not required anymore. Now that we call `compinit
-i` at the end of `bundle-install`, we shouldn't need this. Every time a new
bundle is added by the user that defines completions, the `bundle-install` the
user runs, should create the `.zcompdump` with the new completions too. But I'll
keep this here, probably deprecating after some further investigation.

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

... ... @@ -212,6 +212,7 @@ bundle-theme () {
212 212  
213 213 bundle-apply () {
214 214 # Initialize completion.
  215 + # TODO: Doesn't look like this is really necessary. Need to investigate.
215 216 compinit -i
216 217 }
217 218