1.6. Development Environment

Any text editor.

vi syntax highlighting:
There is a util/perl6.vim file in the Pugs source tree.
copy that file to ~/.vim/syntax/

In ~/.vimrc include the following line:
autocmd BufNewFile,BufRead *.p6 setf perl6

or put these lines in ~/.vim/filetype:
augroup filetypedetect
autocmd BufNewFile,BufRead *.p6 setf perl6
augroup END

For emacs one can use the utils/cperl-mode.el file