mirror of
https://github.com/mawww/kakoune.git
synced 2024-11-11 10:25:33 +03:00
Merge remote-tracking branch 'occivink/c-family-quote-variable'
This commit is contained in:
commit
7090be59df
@ -419,7 +419,7 @@ define-command -hidden c-family-alternative-file %{
|
||||
/*) altname="${alt_dir}/${file_noext}.${ext}" ;;
|
||||
*) altname="${dir}/${alt_dir}/${file_noext}.${ext}" ;;
|
||||
esac
|
||||
if [ -f ${altname} ]; then
|
||||
if [ -f "${altname}" ]; then
|
||||
printf 'edit %%{%s}\n' "${altname}"
|
||||
exit
|
||||
fi
|
||||
@ -433,7 +433,7 @@ define-command -hidden c-family-alternative-file %{
|
||||
/*) altname="${alt_dir}/${file_noext}.${ext}" ;;
|
||||
*) altname="${dir}/${alt_dir}/${file_noext}.${ext}" ;;
|
||||
esac
|
||||
if [ -f ${altname} ]; then
|
||||
if [ -f "${altname}" ]; then
|
||||
printf 'edit %%{%s}\n' "${altname}"
|
||||
exit
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user