Closed ntcong closed 7 years ago
Currently dash.vim sort keywords before calling search: call s:search(term, sort(keywords)) . This behavior conflicts with dash plugin development guidelines: The keywords should be ordered based on how relevant they are.
call s:search(term, sort(keywords))
The keywords should be ordered based on how relevant they are.
Currently dash.vim sort keywords before calling search:
call s:search(term, sort(keywords))
. This behavior conflicts with dash plugin development guidelines:The keywords should be ordered based on how relevant they are.