added hotkeys to open specific profiles

This commit is contained in:
Eugene Pankov 2019-02-17 13:12:05 +01:00
parent 128aa618f0
commit 1675312f75
3 changed files with 25 additions and 5 deletions

View File

@ -6,6 +6,9 @@ export class TerminalConfigProvider extends ConfigProvider {
shell: {
__nonStructural: true,
},
profile: {
__nonStructural: true,
},
},
terminal: {
frontend: 'xterm',

View File

@ -1,5 +1,6 @@
import slug from 'slug'
import { Injectable } from '@angular/core'
import { IHotkeyDescription, HotkeyProvider } from 'terminus-core'
import { IHotkeyDescription, HotkeyProvider, ConfigService } from 'terminus-core'
import { TerminalService } from './services/terminal.service'
@Injectable()
@ -64,14 +65,22 @@ export class TerminalHotkeyProvider extends HotkeyProvider {
]
constructor (
private config: ConfigService,
private terminal: TerminalService,
) { super() }
async provide (): Promise<IHotkeyDescription[]> {
let shells = await this.terminal.shells$.toPromise()
return this.hotkeys.concat(shells.map(shell => ({
id: `shell.${shell.id}`,
name: `New tab: ${shell.name}`
})))
return [
...this.hotkeys,
...shells.map(shell => ({
id: `shell.${shell.id}`,
name: `New tab: ${shell.name}`
})),
...this.config.store.terminal.profiles.map(profile => ({
id: `profile.${slug(profile.name)}`,
name: `New tab: ${profile.name}`
})),
]
}
}

View File

@ -1,4 +1,5 @@
import * as fs from 'mz/fs'
import slug from 'slug'
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
@ -166,6 +167,13 @@ export default class TerminalModule {
terminal.openTab(shell)
}
}
if (hotkey.startsWith('profile.')) {
let profiles = config.store.terminal.profiles
let profile = profiles.find(x => slug(x.name) === hotkey.split('.')[1])
if (profile) {
terminal.openTabWithOptions(profile.sessionOptions)
}
}
})
hostApp.cliOpenDirectory$.subscribe(async directory => {