We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c1df0c commit 52240c3Copy full SHA for 52240c3
autoload/lsp/utils.vim
@@ -81,7 +81,7 @@ function! s:encode_uri(path, start_pos_encode, default_prefix) abort
81
82
for l:i in range(a:start_pos_encode, len(l:path) - 1)
83
" Don't encode '/' here, `path` is expected to be a valid path.
84
- if l:path[l:i] =~# '^[a-zA-Z0-9_.~/-]$'
+ if l:path[l:i] =~# '^[a-zA-Z0-9_.~/@-]$'
85
let l:result .= l:path[l:i]
86
else
87
let l:result .= s:urlencode_char(l:path[l:i])
0 commit comments