Skip to content

Commit 3bc3390

Browse files
committed
update name
1 parent d2d39fc commit 3bc3390

File tree

1 file changed

+30
-19
lines changed

1 file changed

+30
-19
lines changed

package.json

Lines changed: 30 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "codenotes",
3-
"displayName": "Code Notes",
2+
"name": "crosscodenotes",
3+
"displayName": "Codebase Notebook",
44
"sponsor": {
55
"url": "https://github.com/sponsors/kyonru"
66
},
@@ -16,20 +16,31 @@
1616
"capabilities": {
1717
"dynamicRegistration": true
1818
},
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+
],
1930
"activationEvents": [],
2031
"main": "./out/extension.js",
2132
"contributes": {
2233
"viewsContainers": {
2334
"activitybar": [
2435
{
25-
"id": "codenotes",
36+
"id": "crosscodenotes",
2637
"title": "Code Notes",
2738
"icon": "$(notebook)"
2839
}
2940
]
3041
},
3142
"views": {
32-
"codenotes": [
43+
"crosscodenotes": [
3344
{
3445
"id": "codeNotesView",
3546
"name": ""
@@ -38,81 +49,81 @@
3849
},
3950
"commands": [
4051
{
41-
"command": "codenotes.createNote",
52+
"command": "crosscodenotes.createNote",
4253
"title": "Code Notes: Create Note",
4354
"icon": "$(new-file)"
4455
},
4556
{
46-
"command": "codenotes.selectNote",
57+
"command": "crosscodenotes.selectNote",
4758
"title": "Code Notes: Select Note"
4859
},
4960
{
50-
"command": "codenotes.addReference",
61+
"command": "crosscodenotes.addReference",
5162
"title": "Code Notes: Add Reference"
5263
},
5364
{
54-
"command": "codenotes.goToReference",
65+
"command": "crosscodenotes.goToReference",
5566
"title": "Code Notes: Go to Reference"
5667
},
5768
{
58-
"command": "codenotes.viewNote",
69+
"command": "crosscodenotes.viewNote",
5970
"title": "Code Notes: View Note",
6071
"icon": "$(open-preview)"
6172
},
6273
{
63-
"command": "codenotes.openNotesDir",
74+
"command": "crosscodenotes.openNotesDir",
6475
"title": "Code Notes: Open Notes Directory",
6576
"icon": "$(folder)"
6677
},
6778
{
68-
"command": "codenotes.deleteNote",
79+
"command": "crosscodenotes.deleteNote",
6980
"title": "Code Notes: Delete Note",
7081
"icon": "$(trash)"
7182
},
7283
{
73-
"command": "codenotes.refreshTree",
84+
"command": "crosscodenotes.refreshTree",
7485
"title": "Code Notes: Refresh Tree",
7586
"icon": "$(refresh)"
7687
},
7788
{
78-
"command": "codenotes.openNoteFromTree",
89+
"command": "crosscodenotes.openNoteFromTree",
7990
"title": "Code Notes: Open Note from Tree",
8091
"icon": "$(open-preview)"
8192
},
8293
{
83-
"command": "codenotes.viewNoteAt",
94+
"command": "crosscodenotes.viewNoteAt",
8495
"title": "Code Notes: View Note at"
8596
}
8697
],
8798
"menus": {
8899
"view/title": [
89100
{
90-
"command": "codenotes.refreshTree",
101+
"command": "crosscodenotes.refreshTree",
91102
"when": "view == codeNotesView",
92103
"title": "Refresh",
93104
"group": "navigation"
94105
},
95106
{
96-
"command": "codenotes.createNote",
107+
"command": "crosscodenotes.createNote",
97108
"title": "New Note",
98109
"when": "view == codeNotesView",
99110
"group": "navigation"
100111
},
101112
{
102-
"command": "codenotes.openNotesDir",
113+
"command": "crosscodenotes.openNotesDir",
103114
"title": "Open Notes Directory",
104115
"when": "view == codeNotesView",
105116
"group": "navigation"
106117
}
107118
],
108119
"view/item/context": [
109120
{
110-
"command": "codenotes.openNoteFromTree",
121+
"command": "crosscodenotes.openNoteFromTree",
111122
"when": "view == codeNotesView && viewItem == note",
112123
"group": "inline"
113124
},
114125
{
115-
"command": "codenotes.deleteNote",
126+
"command": "crosscodenotes.deleteNote",
116127
"when": "view == codeNotesView && viewItem == note",
117128
"group": "inline"
118129
}

0 commit comments

Comments
 (0)