We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c115d10 commit c57bc5aCopy full SHA for c57bc5a
src/org/opensolaris/opengrok/analysis/Ctags.java
@@ -111,6 +111,8 @@ private void initialize() throws IOException {
111
command.add("--langmap=sql:+.pls"); // RFE #19208
112
command.add("--langmap=sql:+.pld"); // RFE #19208
113
command.add("--langmap=sql:+.pks"); // RFE #19208 ?
114
+ command.add("--langmap=sql:+.pkb"); // # 1763
115
+ command.add("--langmap=sql:+.pck"); // # 1763
116
117
command.add("--langmap=javascript:+.ts");
118
src/org/opensolaris/opengrok/analysis/sql/PLSQLAnalyzerFactory.java
@@ -41,7 +41,9 @@ public class PLSQLAnalyzerFactory extends FileAnalyzerFactory {
41
"PLS",
42
"PKS", //?
43
"PLD",
44
- "PLB"
+ "PLB",
45
+ "PKB",
46
+ "PCK"
47
};
48
49
public PLSQLAnalyzerFactory() {
0 commit comments