|
1 | 1 | { |
2 | | - "name": "codenotes", |
3 | | - "displayName": "Code Notes", |
| 2 | + "name": "crosscodenotes", |
| 3 | + "displayName": "Codebase Notebook", |
4 | 4 | "sponsor": { |
5 | 5 | "url": "https://github.com/sponsors/kyonru" |
6 | 6 | }, |
|
16 | 16 | "capabilities": { |
17 | 17 | "dynamicRegistration": true |
18 | 18 | }, |
| 19 | + "repository": { |
| 20 | + "type": "git", |
| 21 | + "url": "https://github.com/Kyonru/code-notes.git" |
| 22 | + }, |
| 23 | + "keywords": [ |
| 24 | + "note", |
| 25 | + "comment", |
| 26 | + "line", |
| 27 | + "markdown", |
| 28 | + "documentation" |
| 29 | + ], |
19 | 30 | "activationEvents": [], |
20 | 31 | "main": "./out/extension.js", |
21 | 32 | "contributes": { |
22 | 33 | "viewsContainers": { |
23 | 34 | "activitybar": [ |
24 | 35 | { |
25 | | - "id": "codenotes", |
| 36 | + "id": "crosscodenotes", |
26 | 37 | "title": "Code Notes", |
27 | 38 | "icon": "$(notebook)" |
28 | 39 | } |
29 | 40 | ] |
30 | 41 | }, |
31 | 42 | "views": { |
32 | | - "codenotes": [ |
| 43 | + "crosscodenotes": [ |
33 | 44 | { |
34 | 45 | "id": "codeNotesView", |
35 | 46 | "name": "" |
|
38 | 49 | }, |
39 | 50 | "commands": [ |
40 | 51 | { |
41 | | - "command": "codenotes.createNote", |
| 52 | + "command": "crosscodenotes.createNote", |
42 | 53 | "title": "Code Notes: Create Note", |
43 | 54 | "icon": "$(new-file)" |
44 | 55 | }, |
45 | 56 | { |
46 | | - "command": "codenotes.selectNote", |
| 57 | + "command": "crosscodenotes.selectNote", |
47 | 58 | "title": "Code Notes: Select Note" |
48 | 59 | }, |
49 | 60 | { |
50 | | - "command": "codenotes.addReference", |
| 61 | + "command": "crosscodenotes.addReference", |
51 | 62 | "title": "Code Notes: Add Reference" |
52 | 63 | }, |
53 | 64 | { |
54 | | - "command": "codenotes.goToReference", |
| 65 | + "command": "crosscodenotes.goToReference", |
55 | 66 | "title": "Code Notes: Go to Reference" |
56 | 67 | }, |
57 | 68 | { |
58 | | - "command": "codenotes.viewNote", |
| 69 | + "command": "crosscodenotes.viewNote", |
59 | 70 | "title": "Code Notes: View Note", |
60 | 71 | "icon": "$(open-preview)" |
61 | 72 | }, |
62 | 73 | { |
63 | | - "command": "codenotes.openNotesDir", |
| 74 | + "command": "crosscodenotes.openNotesDir", |
64 | 75 | "title": "Code Notes: Open Notes Directory", |
65 | 76 | "icon": "$(folder)" |
66 | 77 | }, |
67 | 78 | { |
68 | | - "command": "codenotes.deleteNote", |
| 79 | + "command": "crosscodenotes.deleteNote", |
69 | 80 | "title": "Code Notes: Delete Note", |
70 | 81 | "icon": "$(trash)" |
71 | 82 | }, |
72 | 83 | { |
73 | | - "command": "codenotes.refreshTree", |
| 84 | + "command": "crosscodenotes.refreshTree", |
74 | 85 | "title": "Code Notes: Refresh Tree", |
75 | 86 | "icon": "$(refresh)" |
76 | 87 | }, |
77 | 88 | { |
78 | | - "command": "codenotes.openNoteFromTree", |
| 89 | + "command": "crosscodenotes.openNoteFromTree", |
79 | 90 | "title": "Code Notes: Open Note from Tree", |
80 | 91 | "icon": "$(open-preview)" |
81 | 92 | }, |
82 | 93 | { |
83 | | - "command": "codenotes.viewNoteAt", |
| 94 | + "command": "crosscodenotes.viewNoteAt", |
84 | 95 | "title": "Code Notes: View Note at" |
85 | 96 | } |
86 | 97 | ], |
87 | 98 | "menus": { |
88 | 99 | "view/title": [ |
89 | 100 | { |
90 | | - "command": "codenotes.refreshTree", |
| 101 | + "command": "crosscodenotes.refreshTree", |
91 | 102 | "when": "view == codeNotesView", |
92 | 103 | "title": "Refresh", |
93 | 104 | "group": "navigation" |
94 | 105 | }, |
95 | 106 | { |
96 | | - "command": "codenotes.createNote", |
| 107 | + "command": "crosscodenotes.createNote", |
97 | 108 | "title": "New Note", |
98 | 109 | "when": "view == codeNotesView", |
99 | 110 | "group": "navigation" |
100 | 111 | }, |
101 | 112 | { |
102 | | - "command": "codenotes.openNotesDir", |
| 113 | + "command": "crosscodenotes.openNotesDir", |
103 | 114 | "title": "Open Notes Directory", |
104 | 115 | "when": "view == codeNotesView", |
105 | 116 | "group": "navigation" |
106 | 117 | } |
107 | 118 | ], |
108 | 119 | "view/item/context": [ |
109 | 120 | { |
110 | | - "command": "codenotes.openNoteFromTree", |
| 121 | + "command": "crosscodenotes.openNoteFromTree", |
111 | 122 | "when": "view == codeNotesView && viewItem == note", |
112 | 123 | "group": "inline" |
113 | 124 | }, |
114 | 125 | { |
115 | | - "command": "codenotes.deleteNote", |
| 126 | + "command": "crosscodenotes.deleteNote", |
116 | 127 | "when": "view == codeNotesView && viewItem == note", |
117 | 128 | "group": "inline" |
118 | 129 | } |
|
0 commit comments