-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add languageId filter for options similar to microprofile
Signed-off-by: azerr <[email protected]>
- Loading branch information
1 parent
910e2be
commit 27c0522
Showing
5 changed files
with
129 additions
and
35 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
...kus.ls.ext/com.redhat.quarkus.ls/src/main/java/com/redhat/quarkus/QuarkusLanguageIds.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2024 Red Hat Inc. and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0 | ||
* which is available at https://www.apache.org/licenses/LICENSE-2.0. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 | ||
* | ||
* Contributors: | ||
* Red Hat Inc. - initial API and implementation | ||
*******************************************************************************/ | ||
package com.redhat.quarkus; | ||
|
||
/** | ||
* Quarkus language ids. | ||
*/ | ||
public class QuarkusLanguageIds { | ||
|
||
public static final String QUARKUS_PROPERTIES = "quarkus-properties"; | ||
|
||
private QuarkusLanguageIds() { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
qute.ls/com.redhat.qute.ls/src/main/java/com/redhat/qute/QuteLanguageIds.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2024 Red Hat Inc. and others. | ||
* All rights reserved. This program and the accompanying materials | ||
* which accompanies this distribution, and is available at | ||
* http://www.eclipse.org/legal/epl-v20.html | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: | ||
* Red Hat Inc. - initial API and implementation | ||
*******************************************************************************/ | ||
package com.redhat.qute; | ||
|
||
/** | ||
* Qute language Ids. | ||
*/ | ||
public class QuteLanguageIds { | ||
|
||
public static final String QUTE_HTML = "qute-html"; | ||
|
||
public static final String QUTE_JSON = "qute-json"; | ||
|
||
public static final String QUTE_YAML = "qute-yaml"; | ||
|
||
public static final String QUTE_TXT = "qute-txt"; | ||
|
||
public static final String[] QUTE_ALL = { QUTE_HTML, QUTE_JSON, QUTE_YAML, QUTE_TXT }; | ||
|
||
private QuteLanguageIds() { | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters