File tree 2 files changed +1
-4
lines changed
2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -479,16 +479,14 @@ onMounted(() => {
479
479
bindEventListener (currentInstance .refs , currentInstance .exposed )
480
480
}
481
481
482
+ // Scroll to bottom if history changes
482
483
const resizeObsever = new ResizeObserver (() => {
483
484
// TODO Only scroll to bottom if user scrolled to bottom before
484
485
vueCommandHistoryRef .value .scrollTop = vueCommandHistoryRef .value .scrollHeight
485
486
})
486
-
487
- // Scroll to bottom if history changes
488
487
for (const vueCommandHistoryEntry of vueCommandHistoryRef .value .children ) {
489
488
resizeObsever .observe (vueCommandHistoryEntry)
490
489
}
491
-
492
490
// If history changes, unobserve all history entries and observe again
493
491
watch (local .history , async () => {
494
492
await nextTick ()
Original file line number Diff line number Diff line change @@ -244,7 +244,6 @@ const reverseISearch = event => {
244
244
}
245
245
// Cancels the current query or multiline query and creates a new query
246
246
const sigint = () => {
247
- console .debug (' sigint' )
248
247
if (isEmpty (multilineQueries)) {
249
248
// "setQuery" would overwrite the parent query while we only need to
250
249
// overwrite the locale one
You can’t perform that action at this time.
0 commit comments