You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use the _key_ as a code assist proposal for the "no proposal" case, usually it means property name, or some other named element, represented as additionalProperties or patternProperties in the schema:
and
It can be easily changed as it's defined in com.reprezen.swagedit.assist.SwaggerProposalProvider.createObjectProposals(ObjectTypeDefinition, AbstractNode, String):
if (proposals.isEmpty()) {
proposals.add(newProposal("_key_" + ":", "_key_", null, null));
}
Note that we can change the label, the replacement text, or both.
@tedepstein , we wonder if you have ideas how to improve it, which labels/replacement use in this case.