+----------+-----------+------------+----------+-------------+ | !BANG! | /recent | /patches | about: | <-- links | +----------+-----------+------------+----------+-------------+ +---> ChucK +-- The White Squares must survive! +-- my1stDrumMachine +-- t.player
ChucK is a strongly-timed, Concurrent,
and On-the-fly Audio Programming Language.
A Bundle to edit ChucK files in the TextMate editor is created at Github.
to install it execute in Terminal:
cd ~/Library/Application\ Support/TextMate/Bundles
git clone git://github.com/tasmo/ChucK.tmbundle.git ChucK.tmbundle
Vim is a highly configurable text editor built to enable efficient text editing.
It is an improved version of the vi editor distributed with most UNIX systems.
for .ck syntax highlighting in vim you will need vim.ck
a file opened in vim you can add to an already running ChucK by typing in vim:
:r! chuck + %
to have a shorter command* in vim, add to your ~/.vimrc:
cnoreabbrev CH r! chuck + %
and :CH will do it
*(adopted from the Vim Tips Wiki)