Fix man.kak when man pages filenames just end up with the manual section
This commit is contained in:
parent
7ee3039a79
commit
a0e63fbe93
|
@ -53,7 +53,7 @@ def -params ..1 \
|
||||||
prefix=$(printf %s\\n "$1" | cut -c1-${kak_pos_in_token} 2>/dev/null)
|
prefix=$(printf %s\\n "$1" | cut -c1-${kak_pos_in_token} 2>/dev/null)
|
||||||
for page in /usr/share/man/*/${prefix}*.[1-8]*; do
|
for page in /usr/share/man/*/${prefix}*.[1-8]*; do
|
||||||
candidate=$(basename ${page%%.[1-8]*})
|
candidate=$(basename ${page%%.[1-8]*})
|
||||||
pagenum=$(printf %s\\n "$page" | sed 's,^.*\.\([1-8].*\)\..*$,\1,')
|
pagenum=$(printf %s\\n "$page" | sed 's,^.*\.\([1-8][^.]*\).*$,\1,')
|
||||||
case $candidate in
|
case $candidate in
|
||||||
*\*) ;;
|
*\*) ;;
|
||||||
*) printf %s\\n "$candidate($pagenum)";;
|
*) printf %s\\n "$candidate($pagenum)";;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user