|
1 | 1 | {
|
2 | 2 | "name": "vscode-hacker-typer",
|
3 |
| - "displayName": "VSCode Test Hack", |
4 |
| - "description": "VSCode Test Hack", |
| 3 | + "displayName": "VSCode Hacker Typer 2", |
| 4 | + "description": "In progress", |
5 | 5 | "version": "0.1.1",
|
6 | 6 | "license": "MIT",
|
7 | 7 | "engines": {
|
|
16 | 16 | "Other"
|
17 | 17 | ],
|
18 | 18 | "activationEvents": [
|
19 |
| - "onCommand:tiagodanin.vscode-hacker-typer.recordMacro", |
20 |
| - "onCommand:tiagodanin.vscode-hacker-typer.playMacro", |
21 |
| - "onCommand:tiagodanin.vscode-hacker-typer.deleteMacro" |
| 19 | + "onCommand:com.tiagodanin.vscode-hacker-typer.recordMacro", |
| 20 | + "onCommand:com.tiagodanin.vscode-hacker-typer.playMacro", |
| 21 | + "onCommand:com.tiagodanin.vscode-hacker-typer.deleteMacro" |
22 | 22 | ],
|
23 | 23 | "main": "./out/extension",
|
24 | 24 | "contributes": {
|
25 | 25 | "keybindings": [
|
26 | 26 | {
|
27 |
| - "command": "tiagodanin.vscode-hacker-typer.backspace", |
| 27 | + "command": "com.tiagodanin.vscode-hacker-typer.backspace", |
28 | 28 | "when": "editorTextFocus",
|
29 | 29 | "key": "cmd+shift+backspace"
|
30 | 30 | },
|
31 | 31 | {
|
32 |
| - "command": "tiagodanin.vscode-hacker-typer.recordMacro", |
| 32 | + "command": "com.tiagodanin.vscode-hacker-typer.recordMacro", |
33 | 33 | "when": "editorTextFocus",
|
34 | 34 | "key": "cmd+shift+t r"
|
35 | 35 | },
|
36 | 36 | {
|
37 |
| - "command": "tiagodanin.vscode-hacker-typer.playMacro", |
| 37 | + "command": "com.tiagodanin.vscode-hacker-typer.playMacro", |
38 | 38 | "key": "cmd+shift+t p"
|
39 | 39 | },
|
40 | 40 | {
|
41 |
| - "command": "tiagodanin.vscode-hacker-typer.saveMacro", |
| 41 | + "command": "com.tiagodanin.vscode-hacker-typer.saveMacro", |
42 | 42 | "key": "cmd+shift+t s"
|
43 | 43 | },
|
44 | 44 | {
|
45 |
| - "command": "tiagodanin.vscode-hacker-typer.insertStop", |
| 45 | + "command": "com.tiagodanin.vscode-hacker-typer.insertStop", |
46 | 46 | "key": "cmd+shift+t i"
|
47 | 47 | },
|
48 | 48 | {
|
49 |
| - "command": "tiagodanin.vscode-hacker-typer.insertNamedStop", |
| 49 | + "command": "com.tiagodanin.vscode-hacker-typer.insertNamedStop", |
50 | 50 | "key": "cmd+shift+t n"
|
| 51 | + }, |
| 52 | + { |
| 53 | + "command": "com.tiagodanin.vscode-hacker-typer.exitMacro", |
| 54 | + "key": "cmd+shift+t e" |
51 | 55 | }
|
52 | 56 | ],
|
53 | 57 | "commands": [
|
54 | 58 | {
|
55 |
| - "command": "tiagodanin.vscode-hacker-typer.recordMacro", |
| 59 | + "command": "com.tiagodanin.vscode-hacker-typer.recordMacro", |
56 | 60 | "title": "Record Macro",
|
57 | 61 | "category": "HackerTyper"
|
58 | 62 | },
|
59 | 63 | {
|
60 |
| - "command": "tiagodanin.vscode-hacker-typer.playMacro", |
| 64 | + "command": "com.tiagodanin.vscode-hacker-typer.playMacro", |
61 | 65 | "title": "Play Macro",
|
62 | 66 | "category": "HackerTyper"
|
63 | 67 | },
|
64 | 68 | {
|
65 |
| - "command": "tiagodanin.vscode-hacker-typer.saveMacro", |
| 69 | + "command": "com.tiagodanin.vscode-hacker-typer.saveMacro", |
66 | 70 | "title": "Save Macro",
|
67 | 71 | "category": "HackerTyper"
|
68 | 72 | },
|
69 | 73 | {
|
70 |
| - "command": "tiagodanin.vscode-hacker-typer.removeMacro", |
| 74 | + "command": "com.tiagodanin.vscode-hacker-typer.removeMacro", |
71 | 75 | "title": "Remove Macro",
|
72 | 76 | "category": "HackerTyper"
|
73 | 77 | },
|
74 | 78 | {
|
75 |
| - "command": "tiagodanin.vscode-hacker-typer.insertStop", |
| 79 | + "command": "com.tiagodanin.vscode-hacker-typer.insertStop", |
76 | 80 | "title": "Insert Soft Stop Point",
|
77 | 81 | "category": "HackerTyper"
|
78 | 82 | },
|
79 | 83 | {
|
80 |
| - "command": "tiagodanin.vscode-hacker-typer.insertNamedStop", |
| 84 | + "command": "com.tiagodanin.vscode-hacker-typer.insertNamedStop", |
81 | 85 | "title": "Insert Named Stop Point",
|
82 | 86 | "category": "HackerTyper"
|
83 | 87 | },
|
84 | 88 | {
|
85 |
| - "command": "tiagodanin.vscode-hacker-typer.backspace", |
| 89 | + "command": "com.tiagodanin.vscode-hacker-typer.backspace", |
86 | 90 | "title": "Erase Previous Frame",
|
87 | 91 | "category": "HackerTyper"
|
| 92 | + }, |
| 93 | + { |
| 94 | + "command": "com.tiagodanin.vscode-hacker-typer.exitMacro", |
| 95 | + "title": "Exit Macro", |
| 96 | + "category": "HackerTyper" |
88 | 97 | }
|
89 | 98 | ]
|
90 | 99 | },
|
|
93 | 102 | "compile": "tsc -p ./",
|
94 | 103 | "watch": "tsc -watch -p ./",
|
95 | 104 | "postinstall": "node ./node_modules/vscode/bin/install",
|
96 |
| - "test": "npm run compile && node ./node_modules/vscode/bin/test" |
| 105 | + "test": "yarn run compile && node ./node_modules/vscode/bin/test" |
97 | 106 | },
|
98 | 107 | "devDependencies": {
|
99 | 108 | "@types/mocha": "^2.2.42",
|
|
0 commit comments