Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed the default keybind that bound esc to cancel query #1717

Merged
merged 1 commit into from
Sep 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion apps/studio/src/components/TabQueryEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,11 @@
</x-menuitem>
<x-menuitem @click.prevent="submitQueryToFile">
<x-label>{{ hasSelectedText ? 'Run Selection to File' : 'Run to File' }}</x-label>
<i v-if="$config.isCommunity" class="material-icons menu-icon">stars</i>

Check warning on line 103 in apps/studio/src/components/TabQueryEditor.vue

View workflow job for this annotation

GitHub Actions / build (macos-11)

'class' should be on a new line

Check warning on line 103 in apps/studio/src/components/TabQueryEditor.vue

View workflow job for this annotation

GitHub Actions / build (ubuntu-20.04)

'class' should be on a new line

Check warning on line 103 in apps/studio/src/components/TabQueryEditor.vue

View workflow job for this annotation

GitHub Actions / build (windows-latest)

'class' should be on a new line
</x-menuitem>
<x-menuitem @click.prevent="submitCurrentQueryToFile">
<x-label>Run Current to File</x-label>
<i v-if="$config.isCommunity" class="material-icons menu-icon ">stars</i>

Check warning on line 107 in apps/studio/src/components/TabQueryEditor.vue

View workflow job for this annotation

GitHub Actions / build (macos-11)

'class' should be on a new line

Check warning on line 107 in apps/studio/src/components/TabQueryEditor.vue

View workflow job for this annotation

GitHub Actions / build (ubuntu-20.04)

'class' should be on a new line

Check warning on line 107 in apps/studio/src/components/TabQueryEditor.vue

View workflow job for this annotation

GitHub Actions / build (windows-latest)

'class' should be on a new line
</x-menuitem>
</x-menu>
</x-button>
Expand Down Expand Up @@ -691,7 +691,6 @@
"Shift-Cmd-F": this.formatSql,
"Ctrl-/": this.toggleComment,
"Cmd-/": this.toggleComment,
"Esc": this.cancelQuery,
"F5": this.submitTabQuery,
"Shift-F5": this.submitCurrentQuery,
"Ctrl+I": this.submitQueryToFile,
Expand Down