From d04a6b1e183c5bfbc0958d51d9802ea526568792 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Fri, 22 Mar 2013 14:30:09 +0100 Subject: [PATCH] cpp.kak: alt supports an alt_dirs options for directories to search --- src/rc/cpp.kak | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/src/rc/cpp.kak b/src/rc/cpp.kak index d6af08b0..372a02f9 100644 --- a/src/rc/cpp.kak +++ b/src/rc/cpp.kak @@ -34,14 +34,26 @@ hook global BufNew .*\.(h|hh|hpp|hxx|H) %{ exec ggi%ggxs\.c_A_INCLUDEDggxyppI#ifndefjI#definejI#endif//O } +decl str-list alt_dirs ".,.." + def alt %{ %sh{ shopt -s extglob - case ${kak_bufname} in + alt_dirs=${kak_opt_alt_dirs/,/ } + file=$(basename ${kak_bufname}) + dir=$(dirname ${kak_bufname}) + + case ${file} in *.c|*.cc|*.cpp|*.cxx|*.C) - altname=$(ls -1 "${kak_bufname%.*}".@(h|hh|hpp|hxx|H) 2> /dev/null | head -n 1) + for alt_dir in ${alt_dirs}; do + altname=$(ls -1 "${dir}/${alt_dir}/${file%.*}".@(h|hh|hpp|hxx|H) 2> /dev/null | head -n 1) + [[ -n ${altname} ]] && break + done ;; *.h|*.hh|*.hpp|*.hxx|*.H) - altname=$(ls -1 "${kak_bufname%.*}".@(c|cc|cpp|cxx|C) 2> /dev/null | head -n 1) + for alt_dir in ${alt_dirs}; do + altname=$(ls -1 "${dir}/${alt_dir}/${file%.*}".@(c|cc|cpp|cxx|C) 2> /dev/null | head -n 1) + [[ -n ${altname} ]] && break + done ;; esac if [[ -e ${altname} ]]; then