Skip to content

Make http headers case-insensitive #94

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions ftplugin/rest.vim
Original file line number Diff line number Diff line change
Expand Up @@ -194,21 +194,20 @@ endfunction
"
function! s:ParseHeaders(start, end)
let contentTypeOpt = s:GetOpt('vrc_header_content_type', 'application/json')
let headers = {'Content-Type': contentTypeOpt}
let headers = {'content-type': contentTypeOpt}
if (a:end < a:start)
return headers
endif

let lineBuf = getline(a:start, a:end)
let hasContentType = 0
for line in lineBuf
let line = s:StrTrim(line)
if line ==? '' || line =~? s:vrc_comment_delim || line =~? '\v^--?\w+'
continue
endif
let sepIdx = stridx(line, ':')
if sepIdx > -1
let key = s:StrTrim(line[0:sepIdx - 1])
let key = tolower(s:StrTrim(line[0:sepIdx - 1]))
let headers[key] = s:StrTrim(line[sepIdx + 1:])
endif
endfor
Expand Down