All Projects → Raku → raku-mode

Raku / raku-mode

Licence: GPL-3.0 license
Emacs major mode for Raku

Programming Languages

emacs lisp
2029 projects
Raku
181 projects
Makefile
30231 projects

Raku Mode

License GPL 3 MELPA Status travis

Raku mode lets you edit Raku code with GNU Emacs 24.

This mode needs GNU Emacs 24.4.

Features

  • Basic syntax highlighting
  • Basic indentation
  • Identifier index menu (variables, subs, classes, etc.)
  • REPL interaction

Planned

  • Complete syntax highlighting
  • Better indentation support (uses Emacs SMIE grammar, see the Emacs manual)
  • Autocompletion
  • Possible integration with Raku language server
  • Help system
  • ETags support
  • find-file-at-point for module names
  • Electricity (electric-pair-mode needs some context-sensitive help)
  • Unicode character map
  • Better HEREDOC support (currently not very stable)

Not planned

Installation

With use-package in your init file:

(use-package raku-mode
  :ensure t
  :defer t)

Or in your Cask file:

(source melpa)

(depends-on "raku-mode")

Or manually from MELPA with M-x package-refresh-contents and M-x package-install RET raku-mode.

Usage

Just visit Raku files.

The major mode will be autoloaded whenever a Raku file is visited. This includes any file with raku in the shebang, as well as any file with a .p6, .pm6, or .pl6 extension. It also applies to any .pm, .pl, and .t files whose first line of code looks like Raku.

Start the REPL with M-x run-raku RET. The following keybindings are available to interact with the REPL:

  • C-c C-l: Send the current line to the REPL
  • C-c C-r: Send the selected region to the REPL
  • C-c C-b: Send the whole buffer to the REPL

The REPL will start if needed with this keybindings.

Use M-x customize-group RET raku to customize Raku Mode.

Template skeletons

Included are two skeletons (file templates) that can be auto-inserted with auto-insert-mode:

  • raku-script-skeleton, and
  • raku-module-skeleton.

To use them, add them to your auto-insert-alist (M-x customize-option RET auto-insert-alist) with the conditions of your choice.

To insert them when you create a new file with the .raku or .rakumod extension, use the following matching regular expressions:

  • For raku-script-skeleton: \.raku\'.
  • For raku-module-skeleton: \.rakumod\.

Alternatively you can add them in your .emacs using define-auto-insert:

(define-auto-insert
	'("\\.rakumod\\'" . "Raku module skeleton")
	'raku-module-skeleton)
(define-auto-insert
	'("\\.raku\\'" . "Raku script skeleton")
	'raku-script-skeleton)

The full path to the Raku executable for the shebang, as well as the default auth information for a module can be defined in the Raku Skeleton customization group, M-x customize-group RET raku-skeleton.

Contribute

Pull requests are welcome.

You might want to install cask so you can run the test suite (with make test).

Original Code

The original version of this code can be found at https://github.com/hinrik/perl6-mode

License

Raku Mode is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Raku Mode is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

See COPYING for the complete license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].