Saturday, July 2, 2016

HaxeFlixel, SublimeText and Debian (Derivatives)


Image result for SublimeText iconSublime Text is a sophisticated text editor for code, markup and prose.
Sublime text is a very popular, cross-platform editor that has significant Haxe and OpenFL support provided through an open-source plugin. If you are a Mac, Linux or Windows user, it is one of the most popular choices for Haxe development.
To install Sublime Text in Debian, download the tarball at the official Sublime Text Website http://www.sublimetext.com/3


extract the tarball and move the directory into /opt/
$ tar vxjf sublime_text_3_build_3114_ x64.tar.bz2

and then create a symbolic link to use the command







$ sudo ln -s /opt/sublime_text_3/sublime_text /usr/bin/sublime
 
now we can type sublime to start sublime text
 
 
 
create another symbolic link "subl" so haxeflixel can recognise it
 

$ sudo ln -s /opt/sublime_text_3/sublime_text /usr/bin/subl
 
 
 
 
 
 
and thats it ;)