提交 1675312f 编写于 作者: E Eugene Pankov

added hotkeys to open specific profiles

上级 128aa618
......@@ -6,6 +6,9 @@ export class TerminalConfigProvider extends ConfigProvider {
shell: {
__nonStructural: true,
},
profile: {
__nonStructural: true,
},
},
terminal: {
frontend: 'xterm',
......
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}`
})),
]
}
}
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 => {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册