summaryrefslogtreecommitdiff
path: root/autoload/ale/hover.vim
diff options
context:
space:
mode:
Diffstat (limited to 'autoload/ale/hover.vim')
-rw-r--r--autoload/ale/hover.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/hover.vim b/autoload/ale/hover.vim
index 7070b86d..1202e08e 100644
--- a/autoload/ale/hover.vim
+++ b/autoload/ale/hover.vim
@@ -117,7 +117,7 @@ function! ale#hover#ParseLSPResult(contents) abort
for l:line in split(l:item, "\n")
if l:fence_language is v:null
" Look for the start of a code fence. (```python, etc.)
- let l:match = matchlist(l:line, '^```\(.*\)$')
+ let l:match = matchlist(l:line, '^``` *\([^ ]\+\) *$')
if !empty(l:match)
let l:fence_language = l:match[1]