Skip to content

Commit

Permalink
Remove incorrect question mark from requestline regex (#1302)
Browse files Browse the repository at this point in the history
  • Loading branch information
danlapid authored Oct 10, 2024
1 parent 2541f7e commit 6649589
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syntaxes/http.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@
]
}
},
"match": "(?i)^(?:(get|post|put|delete|patch|head|options|connect|trace|lock|unlock|propfind|proppatch|copy|move|mkcol|mkcalendar|acl|search)\\s+)?\\s*(.+?)(?:\\s+(HTTP\\/\\S+))?$",
"match": "(?i)^(?:(get|post|put|delete|patch|head|options|connect|trace|lock|unlock|propfind|proppatch|copy|move|mkcol|mkcalendar|acl|search)\\s+)\\s*(.+?)(?:\\s+(HTTP\\/\\S+))?$",
"name": "http.requestline"
},
"response-line": {
Expand Down

0 comments on commit 6649589

Please sign in to comment.