Skip to content

Commit 80eed9f

Browse files
sumanstatsaminya
authored andcommitted
Reflect Perl6 to Raku rename
+ [Raku](https://raku.org/) language has been renamed since October 2019 + The command to execute Raku scripts is `raku` command + Perl 6 FE extension used `perl.coffee` is renamed to `Perl 6` Raku/atom-language@7068090 So this commit
1 parent 6741089 commit 80eed9f

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ Currently supported grammars are:
7878
| [Oz] | Yes | Yes | [language-oz] | `ozc` | |
7979
| [Pandoc] Markdown | Yes | | [language-pfm] | [`panzer`] | |
8080
| [Pascal] | Yes | Yes | [language-pascal] | `fpc` | |
81-
| Perl | Yes | Yes | | | |
82-
| [Perl 6] | Yes | Yes | | `perl6` | |
81+
| [Perl] | Yes | Yes | | | |
82+
| [Raku] | Yes | Yes | | `raku` or `perl6` | |
8383
| PHP | Yes | Yes | | | |
8484
| [PostgreSQL] | Yes | Yes | [language-pgsql] | [`psql`] | Connects as user `PGUSER` to database `PGDATABASE`. Both default to your operating system's `USERNAME`, but can be set in the process environment or in Atom's [`init` file]: `process.env.PGUSER = {user name}` and `process.env.PGDATABASE = {database name}` |
8585
| [POV-Ray] | Yes | | [atom-language-povray] | `povengine`/`povray` | |
@@ -264,8 +264,9 @@ Currently supported grammars are:
264264
[octave]: https://gnu.org/software/octave
265265
[oz]: https://mozart.github.io
266266
[pandoc]: https://pandoc.org
267-
[perl 6]: https://perl6.org
267+
[Raku]: https://raku.org
268268
[pascal]: https://freepascal.org
269+
[Perl]: https://www.perl.org/
269270
[PostgreSQL]: https://postgresql.org
270271
[POV-Ray]: http://www.povray.org/
271272
[powershell]: https://docs.microsoft.com/powershell

lib/grammars/perl.coffee

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ exports.Perl =
1212
command: 'perl'
1313
args: ({filepath}) -> [filepath]
1414

15-
exports['Perl 6'] =
15+
exports['Raku'] =
1616
'Selection Based':
17-
command: 'perl6'
17+
command: 'raku'
1818
args: (context) -> ['-e', context.getCode()]
1919

2020
'File Based':
21-
command: 'perl6'
21+
command: 'raku'
2222
args: ({filepath}) -> [filepath]
2323

24-
exports['Perl 6 FE'] = exports['Perl 6']
24+
exports['Raku/Perl 6'] = exports['Raku']

0 commit comments

Comments
 (0)