CoffeeScript-Sublime-Plugin icon indicating copy to clipboard operation
CoffeeScript-Sublime-Plugin copied to clipboard

Syntax highlighting and checking, commands, shortcuts, snippets, compilation and more.

Results 30 CoffeeScript-Sublime-Plugin issues
Sort by recently updated
recently updated
newest added

I find explicit logging to be exceptionally useful for debugging coffeescript, so i added one more snippet for logging. You'll have description and object dump in one keyboard stroke. logo...

Inside console, suggested command line for installation is currently throwing the following: ``` >>> import urllib2,os; pf='Package Control.sublime-package'; ipp=sublime.installed_packages_path(); os.makedirs(ipp) if not os.path.exists(ipp) else None; urllib2.install_opener(urllib2.build_opener(urllib2.ProxyHandler())); open(os.path.join(ipp,pf),'wb').write(urllib2.urlopen('http://sublime.wbond.net/'+pf.replace(' ','%20')).read()); print 'Please...

When parentheses are used in the expression for the value of a default argument of a function, it breaks highlighting for its function's argument list. It's easier to understand with...

If a source file contains multibyte characters (Japanese characters), Check Syntax or Display JavaScript fails with UnicodeEncodeError on Windows. Adding encode/decode with utf-8 works without errors. I got the following...

Fixed the cake run task command.

Otherwise it put things like `\begin{equation}` in LaTeX symbols list, even when syntax is set to LaTeX. See https://github.com/SublimeText/LaTeXTools/issues/325 (originally I though that it was an issue with LaTeXTools, but...

fixed issue that 'Run Cake Task' return no msg cakepath is args of Popen(cwd=cakepath) slice 'Cakefile' from cakepath

Previously, class methods (method names in a class prefixed with `@`) were not highlighted nor registered as functions definitions. This is my admittedly naive attempt at adding the `@` symbol...