-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added support for Nova Code Editor Ext manifest #4389
base: master
Are you sure you want to change the base?
Conversation
Thanks for the PR! This section of the codebase is owned by @madskristensen and |
for more information, see https://pre-commit.ci
for more information, see https://pre-commit.ci
src/api/json/catalog.json
Outdated
{ | ||
"name": "Nova Editor", | ||
"description": "Nova Editor Extension Manifest", | ||
"fileMatch": ["extension.json"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a bit generic. Can you add a more specific pattern like a folder name as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure 😊
for more information, see https://pre-commit.ci
for more information, see https://pre-commit.ci
"description": "Nova Editor Extension Manifest", | ||
"fileMatch": ["**/*.novaextension/extension.json", "extension.json"], | ||
"url": "https://json.schemastore.org/extension.json" | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @madskristensen. Unfortunately the name they chose is very generic inherently. However I did forgot to add *.novaextension/
folder, which I just did
@EmranMR Thanks for the update! I'll be able to merge this if |
Hello!
This should add support for the
extension.json
manifest, used by Nova Code editor for extension development.Below is the link to the manifest for you:
Thanks
Emran