File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1445,7 +1445,7 @@ const Buffer = Module("buffer", {
1445
1445
context . completions = [ item for ( item in generateTabs ( tabs || config . tabbrowser . visibleTabs ) ) ] ;
1446
1446
}
1447
1447
1448
- if ( ! liberator . has ( "tabgroup" ) )
1448
+ if ( ! liberator . has ( "tabgroup" ) || ! tabGroup . TV )
1449
1449
return ;
1450
1450
1451
1451
let groups = tabGroup . tabView . GroupItems ;
Original file line number Diff line number Diff line change @@ -406,7 +406,7 @@ const Tabs = Module("tabs", {
406
406
let matches = buffer . match ( / ^ ( \d + ) : ? / ) ;
407
407
if ( matches )
408
408
return [ tabs . getTab ( parseInt ( matches [ 1 ] , 10 ) - 1 ) ] ;
409
- else if ( liberator . has ( "tabgroup" ) ) {
409
+ else if ( liberator . has ( "tabgroup" ) && tabGroup . TV ) {
410
410
matches = buffer . match ( / ^ ( .+ ?) \. ( \d + ) : ? / ) ;
411
411
if ( matches ) {
412
412
let [ , groupName , tabNum ] = matches ;
You can’t perform that action at this time.
0 commit comments