Skip to content

Commit 8ff007b

Browse files
committed
Fix for missing function
1 parent 2688733 commit 8ff007b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/dispatch.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,7 @@ function! s:request(request) abort
739739
let i = len(s:makes)
740740
while i
741741
let i -= 1
742-
if s:handler_id(s:makes[i]) ==# a:request
742+
if s:makes[i].handler . '/' . dispatch#pid(s:makes[i]) ==# a:request
743743
return s:makes[i]
744744
endif
745745
endwhile

0 commit comments

Comments
 (0)