From b967c50fafa778b8e208bf2e28d4477195ff5027 Mon Sep 17 00:00:00 2001 From: Sorin Ionescu Date: Sun, 30 Sep 2012 16:15:20 -0400 Subject: [PATCH] [#129, #211] Remove z --- .gitmodules | 3 --- modules/z/README.md | 21 --------------------- modules/z/external | 1 - modules/z/init.zsh | 19 ------------------- 4 files changed, 44 deletions(-) delete mode 100644 modules/z/README.md delete mode 160000 modules/z/external delete mode 100644 modules/z/init.zsh diff --git a/.gitmodules b/.gitmodules index a898a306..7a7a7b5e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -7,6 +7,3 @@ [submodule "modules/completion/external"] path = modules/completion/external url = https://github.com/zsh-users/zsh-completions.git -[submodule "modules/z/external"] - path = modules/z/external - url = https://github.com/rupa/z.git diff --git a/modules/z/README.md b/modules/z/README.md deleted file mode 100644 index e17aa0ec..00000000 --- a/modules/z/README.md +++ /dev/null @@ -1,21 +0,0 @@ -Z -= - -Integrates [z][1] into Prezto, which maintains a frequently used directory -list for fast directory changes. - -Aliases -------- - - - `j` changes the current working directory to the most *frecent* match. - -Authors -------- - -*The authors of this module should be contacted via the [issue tracker][2].* - - - [Sorin Ionescu](https://github.com/sorin-ionescu) - -[1]: https://github.com/rupa/z -[2]: https://github.com/sorin-ionescu/prezto/issues - diff --git a/modules/z/external b/modules/z/external deleted file mode 160000 index 9bf5feb8..00000000 --- a/modules/z/external +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 9bf5feb86ac05ad32cd8fbf46d459eb415eed749 diff --git a/modules/z/init.zsh b/modules/z/init.zsh deleted file mode 100644 index df1e5709..00000000 --- a/modules/z/init.zsh +++ /dev/null @@ -1,19 +0,0 @@ -# -# Maintains a frequently used directory list for fast directory changes. -# -# Authors: -# Sorin Ionescu -# - -# Set the directory changing command. -_Z_CMD='j' - -# Prevent symbolic link resolution. -_Z_NO_RESOLVE_SYMLINKS=1 - -# Source module files. -source "${0:h}/external/z.sh" - -# Cleanup. -unset _Z_{CMD,NO_RESOLVE_SYMLINKS} -