From 8e4fc03038cedf49e2a86aa066e59593badc2cf4 Mon Sep 17 00:00:00 2001 From: Matt Hamilton Date: Thu, 17 Dec 2015 03:02:52 -0500 Subject: [PATCH] update completion docs to reflect zmodules order --- modules/completion/README.md | 2 ++ templates/zimrc | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/completion/README.md b/modules/completion/README.md index d8cb6cf..6fc0fa9 100644 --- a/modules/completion/README.md +++ b/modules/completion/README.md @@ -5,6 +5,8 @@ Enables and configures smart and extensive tab completion. Completions are sourced from [zsh-completions](https://github.com/zsh-users/zsh-completions). +This should be the **LAST** module in the `zmodules` list in your `.zimrc`. + Contributing ------------ diff --git a/templates/zimrc b/templates/zimrc index 44d990a..26776be 100644 --- a/templates/zimrc +++ b/templates/zimrc @@ -9,8 +9,8 @@ # select what modules you would like enabled # the second line of modules may depend on options set by modules in the first line # these dependencies are noted on the respective module's README.md -zmodules=(completion directory environment git history input ssh utility \ - syntax-highlighting history-substring-search prompt) +zmodules=(directory environment git history input ssh utility \ + syntax-highlighting history-substring-search prompt completion) ###################