From 36b6cdd7b9a67211fbb0a5a86819fb51fc4e3dfe Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Wed, 18 Jul 2018 09:43:28 +0200 Subject: [PATCH] zsh/rc: don't abort if there are no autoloadable functions Broken since 02b16f5 ("zsh: functions: remove extract", 2018-07-17). --- shell/zsh/rc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/shell/zsh/rc b/shell/zsh/rc index 7222619..0af99af 100644 --- a/shell/zsh/rc +++ b/shell/zsh/rc @@ -1,6 +1,6 @@ # Zsh configuration file. -# Copyright (C) 2011-2014 Simon Ruderich +# Copyright (C) 2011-2018 Simon Ruderich # # This file is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -108,8 +108,10 @@ fi # functions). fpath=(~/.zsh/functions $fpath) # Autoload my functions (except completion functions and hidden files). Thanks -# to caphuso from the Zsh example files for this idea. -if [[ -d ~/.zsh/functions ]]; then +# to caphuso from the Zsh example files for this idea. Check if there are any +# functions to load or autoload fails; thanks to okdana in #zsh on Freenode +# (2018-07-18 09:29 CEST) for the idea to use (#qNY1) for the check. +if [[ -d ~/.zsh/functions && -n ${fpath[1]}/^_*(#qNY1^/:t) ]]; then autoload -Uz ${fpath[1]}/^_*(^/:t) fi -- 2.43.2