alert!!! site for the old dublang version 0.2.x, see the latest dublang site version here
dublang is the universal live coding user interface to run multiple languages in a single and unified live coding session
the name dublang is inspired by the musical style dub, dub consists of remixes of existing music, and just like the dub, dublang consists of remixes of existing software tools
dublang combines neovim plugin, systemd services, tcp servers and read-eval-print loop (REPL) on top of live coding languages
goals
files with extension .dub
are recognized as
dublang code, below we can see an example including code in
SuperCollider and Tidal Cycles
#!supercollider
{ SinOsc.ar([220, 140]) }.play
#!tidalcycles
d1 $ sound "808bd(3,8)"
# shape 0.2
when code under the region #!supercollider
is evaluated
by pressing "CTRL + e"
it is executed by the SuperCollider
language, when code in #!tidalcycles
is evaluated then
Tidal Cycles is used
shebang are lines starting by the two characters #! followed by the dublang plugin name
shebang defines regions in dublang language and can be added at any place, multiple times
for instance, the line #!supercollider
defines a region
to write SuperCollider code
plugins extends dublang adding new languages, new services and new tools, available plugins
requirements
= 5.1
>= 0.5.1
>= 1.36.0
install dublang,
requires root
user
luarocks install dublang
install dublang-nvim and the
recommended neovim plugins, add to
~/.config/nvim/init.vim
call plug#begin()
Plug 'https://codeberg.org/joenio/dublang-nvim.git', { 'branch': 'main' }
" rcarriga/nvim-notify provides a fancy way to display user messages
Plug 'rcarriga/nvim-notify'
" supercollider/scvim is needed for syntax highlight
Plug 'supercollider/scvim'
call plug#end()
and run :PlugInstall
inside neovim, depends on vim-plug
usually dublang plugins depends on other tools, but the installation of those tools are out of scope of dublang
for example, Tidal Cycles depends on SuperCollider, SuperDirt and Tidal haskell library, the setup of a fully-functional Tidal Cycles environment is out of scope of dublang
but once that the Tidal Cycles is installed and functional, dublang provides an interface to manage Tidal Cycles service and a way to live coding on it
the same idea is true for all dublang plugins
as the first step is good to run the dublang
echo
plugin, this plugin just send back the message
evaluated with CTRL + e
and is useful to validate that the
dublang installation is working properly
the dublang provides a command line interface to manage the
services provided by plugins, to enable and run the dublang
echo
plugin open a terminal and run
dublang install echo
dublang start echo
now open the neovim with a new file helloworld.dub
nvim helloworld.dub
type the following code inside the file
helloworld.dub
#!echo
Hello World
type CTRL + e
with the cursor under the "Hello World"
message
you should see a notification "Hello World" inside the neovim
dublang is free software released under GNU GPL v3.0
source code and development documentation can be found at dublang-dev, dublang and dublang-nvim
Joenio Marques da Costa <joenio@joenio.me>