Skip to content

Commit c57bc5a

Browse files
committed
add more plsql extensions, fixes #1763
1 parent c115d10 commit c57bc5a

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/org/opensolaris/opengrok/analysis/Ctags.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,8 @@ private void initialize() throws IOException {
111111
command.add("--langmap=sql:+.pls"); // RFE #19208
112112
command.add("--langmap=sql:+.pld"); // RFE #19208
113113
command.add("--langmap=sql:+.pks"); // RFE #19208 ?
114+
command.add("--langmap=sql:+.pkb"); // # 1763
115+
command.add("--langmap=sql:+.pck"); // # 1763
114116

115117
command.add("--langmap=javascript:+.ts");
116118

src/org/opensolaris/opengrok/analysis/sql/PLSQLAnalyzerFactory.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ public class PLSQLAnalyzerFactory extends FileAnalyzerFactory {
4141
"PLS",
4242
"PKS", //?
4343
"PLD",
44-
"PLB"
44+
"PLB",
45+
"PKB",
46+
"PCK"
4547
};
4648

4749
public PLSQLAnalyzerFactory() {

0 commit comments

Comments
 (0)