chore: minor ui improvements

This commit is contained in:
Liyas Thomas
2022-12-14 19:29:04 +05:30
parent 0d26d4cdbd
commit ba6069324f
15 changed files with 43 additions and 36 deletions

View File

@@ -37,6 +37,7 @@ export type HoppAction =
| "response.preview.toggle" // Toggle response preview
| "response.file.download" // Download response as file
| "response.copy" // Copy response to clipboard
| "modals.login.toggle" // Login to Hoppscotch
/**
* Defines the arguments, if present for a given type that is required to be passed on

View File

@@ -47,6 +47,7 @@ export const baseTheme = EditorView.theme({
fontFamily: "var(--font-mono)",
color: "var(--secondary-dark-color)",
backgroundColor: "transparent",
height: "100%",
},
".cm-cursor": {
borderColor: "var(--secondary-color)",

View File

@@ -56,8 +56,8 @@ export const bindings: {
"alt-q": "navigation.jump.graphql",
"alt-w": "navigation.jump.realtime",
"alt-d": "navigation.jump.documentation",
"alt-m": "navigation.jump.profile",
"alt-s": "navigation.jump.settings",
"alt-m": "navigation.jump.profile",
"ctrl-shift-p": "response.preview.toggle",
"ctrl-j": "response.file.download",
"ctrl-.": "response.copy",