Tim Mulholland
Tim Mulholland
Currently, the `InputManager` uses a bunch of mappings in the static `KeyHandlers` class to make sure that unrecognized keystrokes (for instance, the media keys, the browser control keys, etc) don't...
> I digress slightly from the original issue but I would've expected setting environment variables $EDITOR/$VISUAL to work as is the case of a lot of CLI tools, e.g., https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration....
The most common preferences being set, by far, are `editor.command.default` (the path to the editor used for specifying a request body) and `editor.command.default.arguments` (the arguments to pass to the editor)....
Forked from https://github.com/dotnet/HttpRepl/pull/448#discussion_r536751646 The [OpenAPI Specification](http://spec.openapis.org/oas/v3.0.3#fixed-fields-9) defines a `allowReserved` field on a parameter definition (only for query parameters): > Determines whether the parameter value SHOULD allow reserved characters, as defined...
Forked from #368 - we should look into handling ctrl+c to cancel long-running commands (if one is running) rather than closing the whole session. cc @sayedihashimi
With the work we're doing to move to using OpenApi.NET (#347), one of the benefits we get is the ability to validate the OpenAPI Description document. I'm wondering if it...
The OpenAPI spec allows for tags on operations, intending them to be used for grouping by tools like ours: [Spec](http://spec.openapis.org/oas/v3.0.3#operation-object): > A list of tags for API documentation control. Tags...
It is currently pretty easy for a user to install the tool once and continue using that installed version without realizing there are updates. We should investigate implementing a check...
In discussions with @jimmylewis about the changes necessary to make #430 work, there's agreement that the current need for an ITelemetry object to be passed into every command that needs...
Since this is a .net core project, we have the opportunity to upgrade to C# 8 and make use of nullable reference types. I think we would benefit from enabling...