Skip to content

Commit

Permalink
fix hygiene
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed May 14, 2018
1 parent 2e76670 commit fc710af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export class ViewPickerHandler extends QuickOpenHandler {
const terminalsCategory = nls.localize('terminals', "Terminal");
this.terminalService.terminalTabs.forEach((tab, tabIndex) => {
tab.terminalInstances.forEach((terminal, terminalIndex) => {
const index = `${tabIndex + 1}.${terminalIndex + 1}`
const index = `${tabIndex + 1}.${terminalIndex + 1}`;
const entry = new ViewEntry(nls.localize('terminalTitle', "{0}: {1}", index, terminal.title), terminalsCategory, () => {
this.terminalService.showPanel(true).done(() => {
this.terminalService.setActiveInstance(terminal);
Expand Down

0 comments on commit fc710af

Please sign in to comment.