mirror of
https://github.com/Eugeny/tabby.git
synced 2025-10-04 22:14:55 +00:00

New standard theme that follows your chosen terminal colors, Bootstrap 5 & Angular 15 upgrade
19 lines
715 B
Plaintext
19 lines
715 B
Plaintext
h3.mb-3(translate) Hotkeys
|
|
|
|
.input-group.mb-4
|
|
.input-group-text
|
|
i.fas.fa-fw.fa-search
|
|
input.form-control(type='search', [placeholder]='"Search hotkeys"|translate', [(ngModel)]='hotkeyFilter')
|
|
|
|
.mb-3.hotkeys-table
|
|
ng-container(*ngFor='let hotkey of hotkeyDescriptions')
|
|
.row.align-items-center(*ngIf='!hotkeyFilter || hotkeyFilterFn(hotkey, hotkeyFilter)')
|
|
.col-8.py-2
|
|
span {{hotkey.name|translate}}
|
|
span.ms-2.text-muted ({{hotkey.id}})
|
|
.col-4.pe-5
|
|
multi-hotkey-input(
|
|
[hotkeys]='getHotkeys(hotkey.id) || []',
|
|
(hotkeysChange)='setHotkeys(hotkey.id, $event)'
|
|
)
|