File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -479,16 +479,14 @@ onMounted(() => {
479479 bindEventListener (currentInstance .refs , currentInstance .exposed )
480480 }
481481
482+ // Scroll to bottom if history changes
482483 const resizeObsever = new ResizeObserver (() => {
483484 // TODO Only scroll to bottom if user scrolled to bottom before
484485 vueCommandHistoryRef .value .scrollTop = vueCommandHistoryRef .value .scrollHeight
485486 })
486-
487- // Scroll to bottom if history changes
488487 for (const vueCommandHistoryEntry of vueCommandHistoryRef .value .children ) {
489488 resizeObsever .observe (vueCommandHistoryEntry)
490489 }
491-
492490 // If history changes, unobserve all history entries and observe again
493491 watch (local .history , async () => {
494492 await nextTick ()
Original file line number Diff line number Diff line change @@ -244,7 +244,6 @@ const reverseISearch = event => {
244244}
245245// Cancels the current query or multiline query and creates a new query
246246const sigint = () => {
247- console .debug (' sigint' )
248247 if (isEmpty (multilineQueries)) {
249248 // "setQuery" would overwrite the parent query while we only need to
250249 // overwrite the locale one
You can’t perform that action at this time.
0 commit comments