File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -70,18 +70,18 @@ This is a nano text editor emulator! Press Ctrl + x to leave.</textarea
70
70
</div>
71
71
</template>
72
72
73
- <script lang="js" >
73
+ <script>
74
74
export default {
75
- inject: [' exit', ' setFullscreen', ' terminal' ],
75
+ inject: [" exit", " setFullscreen", " terminal" ],
76
76
77
- created () {
78
- this.setFullscreen(true)
77
+ created() {
78
+ this.setFullscreen(true);
79
79
},
80
80
81
- mounted () {
82
- this.$refs.nano.focus()
83
- }
84
- }
81
+ mounted() {
82
+ this.$refs.nano.focus();
83
+ },
84
+ };
85
85
</script>
86
86
87
87
<style scoped>
@@ -364,7 +364,7 @@ signals.off("SIGINT", sigint);
364
364
```
365
365
366
366
The libraries query component makes usage of that and allows to cancel a query
367
- with ` SIGIN ` .
367
+ with ` SIGINT ` and appending ` ^C ` to the query .
368
368
369
369
## Nice-to-haves
370
370
You can’t perform that action at this time.
0 commit comments