Drop a wildcard in my edit shortcuts that's getting confused between apps/crenshaw2-1.subx
and apps/crenshaw2-1b.subx. We're pretty much always using the full filename
(excluding .subx extension) anyway.
This commit is contained in:
Kartik Agaram 2018-11-30 16:39:27 -08:00
parent 8bf0c436ec
commit 14da19a272
1 changed files with 2 additions and 2 deletions

View File

@ -72,9 +72,9 @@ endfunction
function! SubxPath(arg)
if a:arg =~ "^ex"
return "examples/" . a:arg . "*.subx"
return "examples/" . a:arg . ".subx"
else
return "apps/" . a:arg . "*.subx"
return "apps/" . a:arg . ".subx"
endif
endfunction