Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricardo committed Aug 9, 2010
1 parent 7192ffa commit 86bf558
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/erlangcomplete.vim
Expand Up @@ -98,7 +98,7 @@ function s:erlangFindExternalFunc(module, base)
let function_name = matchstr(element, a:base . '\w\+')
let number_of_args = matchstr(element, '\d\+', len(function_name))
let number_of_comma = max([number_of_args - 1, 0])
let file_path = s:erlangManPath . '/man?/' . a:module . '\.?'
let file_path = g:erlangManPath . '/man?/' . a:module . '\.?'
" [:-2] cutting some weird characters at the end
" becouse grep doesn't support multilines, we have to filter
" first by .B and next by looking via function name
Expand Down

0 comments on commit 86bf558

Please sign in to comment.