@@ -9,12 +9,12 @@ A fully working, most feature-rich Vue.js terminal emulator. See the
9
9
- Simple, yet extensible API
10
10
- Supports asynchronous commands
11
11
- Supports fullscreen mode
12
+ - Customize the terminal with slots
12
13
- Provide your own parser (falls back to simple one)
13
14
- Provide your own event resolver
14
15
- Autocompletion resolver (with <kbd >↹</kbd >)
15
16
- Browse history (with <kbd >↑</kbd >/<kbd >↓</kbd >)
16
17
- Search history (with <kbd >Ctrl</kbd > + <kbd >r</kbd >) (comming soon)
17
- - Customize the terminal with slots
18
18
19
19
## Installation
20
20
@@ -176,7 +176,7 @@ classes. Example:
176
176
``` vue
177
177
<vue-command>
178
178
<template #bar>
179
- × _ □
179
+ ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
180
180
</template>
181
181
</vue-command>
182
182
```
@@ -310,8 +310,8 @@ inject: ["exit", "terminal"],
310
310
311
311
## Signals
312
312
313
- You can send and receive signals like ` SIGINT ` , ` SIGTERM ` or ` SIGKILL ` .
314
- ` SIGINT ` is the only implemented signal for now. When the user presses
313
+ You can send and receive signals like ` SIGINT ` , ` SIGTERM ` or ` SIGKILL ` . ` SIGINT `
314
+ is the only implemented signal for now. When the user presses
315
315
<kbd >Ctrl</kbd > + <kbd >c</kbd >, you can listen to this event by providing a
316
316
signal name and a callback:
317
317
0 commit comments