mirror of
https://github.com/mawww/kakoune.git
synced 2024-11-27 12:16:22 +03:00
Fix the page detection pattern
This commit is contained in:
parent
5fe2872904
commit
a340eaf0ab
@ -49,12 +49,10 @@ def -params .. \
|
||||
} \
|
||||
man -docstring "Manpages viewer wrapper" %{ %sh{
|
||||
subject=${@-$kak_selection}
|
||||
pagenum=""
|
||||
|
||||
## The completion suggestions display the page number, strip them if present
|
||||
if expr "$subject" : '[a-zA-Z_-]+\([^\)]+\)'; then
|
||||
pagenum=${subject##*\(}
|
||||
pagenum=${pagenum:0:$((${#pagenum} - 1))}
|
||||
pagenum=$(expr "$subject" : '.*(\([1-8].*\))')
|
||||
if [ -n "$pagenum" ]; then
|
||||
subject=${subject%%\(*}
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user