Since plugins are under their own directories, the /plugins/foo/foo.plugin.zsh naming scheme is redundant. Naming the entry point of plugins init.zsh will encourage the splitting of large plugins into multiple files.pull/3/head
parent
147ed7ec5e
commit
71d5e5625e
@ -1,2 +0,0 @@
|
|||||||
alias cloudapp="${0:r:r}.rb"
|
|
||||||
|
|
@ -0,0 +1,2 @@
|
|||||||
|
alias cloudapp="${0:h}/cloudapp.rb"
|
||||||
|
|
@ -1,6 +1,6 @@
|
|||||||
# This file integrates the history-substring-search script into oh-my-zsh.
|
# This file integrates the history-substring-search script into oh-my-zsh.
|
||||||
|
|
||||||
source "${0:r:r}.zsh"
|
source "${0:h}/history-substring-search.zsh"
|
||||||
|
|
||||||
if check-bool "$CASE_SENSITIVE"; then
|
if check-bool "$CASE_SENSITIVE"; then
|
||||||
unset HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS
|
unset HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS
|
Loading…
Reference in new issue