Closed benjamindburke closed 2 days ago
I've also found that changing the runes
JSON key to keys
still persists the ?
as a keybind, so the following is my configuration for allowing ?
characters in the URL field:
{
"global": {
"toggleFullScreenHelp": {
"keys": ["Ctrl+Z"],
"runes": [""],
"description": "Toggle full screen help"
}
}
}
Thanks for finding another bug, I've moved second issue to another one, as it's a little bigger than I expected
Relevant MongoDB spec: https://www.mongodb.com/docs/manual/reference/connection-string/#standard-connection-string-format
Description
In #23 I discovered that Vi-Mongo does not support sharded cluster connections. The sample connection URI provided in that issue contains an
?options
URI component compliant with the MongoDB Standard Connection String Format spec. I've copied the sample URI below:Observed Behavior
When copy-pasting this URI or typing manually into the
New Connection
URL
field, I cannot type the?
character and the Full Screen Help page is opened.Expected Behavior
When I type a
?
character into theNew Connection
URL
field or copy-paste a MongoDB URI containing a?
into the URL field, a?
should be entered into the URL field.