Skip to content

Commit

Permalink
feat: adding support for perl
Browse files Browse the repository at this point in the history
  • Loading branch information
srikanth235 committed Feb 22, 2024
1 parent 671db01 commit 463eaa7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lib/extension/src/autocomplete/languages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export type Language =
| "ruby"
| "sql"
| "php"
| "perl"
| "bat"
| "shellscript";

Expand Down Expand Up @@ -202,6 +203,12 @@ export const languages: { [key in Language]: LanguageDescriptor } = {
comment: { start: "//" },
},

perl: {
name: "Perl",
extensions: [".pl", ".pm", ".pod", ".t", ".PL"],
comment: { start: "#" },
},

bat: {
name: "Batch",
extensions: [".bat", ".cmd"],
Expand Down

0 comments on commit 463eaa7

Please sign in to comment.