NST
NST copied to clipboard
New Source Tree Komodo Addon
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

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...