NST icon indicating copy to clipboard operation
NST copied to clipboard

New Source Tree Komodo Addon

Results 28 NST issues
Sort by recently updated
recently updated
newest added

Hi there, I'm the lead Komodo developer. We're currently preparing our 9.2 release which includes a package installer, allowing people to easily install packages (addons, macros, skins, etc) such as...

I do not know how to add this to the code base (never used GIT or GitHub before), but I have added simple, yet incomplete, support for Tcl. Since version...

Functions with accents in the name aren't listed. I know it's not a good idea to use accents in functions/variables names... Example : function ajoutActivité() { ... }; Is not...

Hi, please add **case 'Node.js':** in getLineParser() otherwise, no outline is there for files typed 'Node.js' like this: ``` var getLineParser = function(self) { switch (self.lang = d.language) { case...

Komodo Edit version 7.1.*, has been around the entire time I've used NST. edit: Can anyone else confirm that simply adding case 'Python3': p = new LineParserPython(); break; After case...

While and after showing the tree, every movement slows down.

EXCEPTION: properties is undefined in line 1642 of chrome://nst/content/NST.js STACK TRACE: SourceTreeViewClass.prototype.getCellProperties@chrome://nst/content/NST.js:1643 [anonymous]@null:0

![nst](https://f.cloud.github.com/assets/5270319/1021024/a6aef63e-0cd9-11e3-9d97-3b9238727d82.jpg)

This works: ``` javascript var MyObject = { myFunction: function() { } } ``` This doesn't work: ``` javascript var MyObject = { myFunction: function myObjectFunction() { } } ```...

This works: ``` javascript var MyObject = { myFunction: function() { } } ``` This doesn't work: var MyObject = { myFunction: function myObjectFunction() { } } Unfortunately this makes...