Questions tagged [komodo]

Komodo Edit is a code editor for several languages (including PHP, Python, JavaScript, XSLT, XML, XHTML, and HTML) which provides syntax highlighting, autocomplete, FTP/SFTP support, etc. It is available for free. Komodo IDE is a commercial product and includes all the features of Komodo Edit and adds the features of an IDE, allowing you to run, view output and debug Perl, Tcl, Python, Ruby and PHP code from within the program.

Komodo IDE supports add-ons to extend its functionalities.

Resources

227 questions
6
votes
5 answers

"from math import sqrt" works but "import math" does not work. What is the reason?

I am pretty new in programming, just learning python. I'm using Komodo Edit 9.0 to write codes. So, when I write "from math import sqrt", I can use the "sqrt" function without any problem. But if I only write "import math", then "sqrt" function of…
Sheikh Ahmad Shah
  • 281
  • 1
  • 4
  • 12
6
votes
4 answers

How do I enable PerlCritic support in Komodo IDE 5.1 on Windows?

I'm trying to enable PerlCritic support in Komodo. The official word from ActiveState, the makers of Komodo IDE 5.1 (Win 32) is: "To enable PerlCritic support, please install the 'Perl-Critic' and 'criticism' modules." Well, installing Perl-Critic…
GeneQ
  • 7,485
  • 6
  • 37
  • 53
6
votes
2 answers

How to change error colors for Komodo IDE color scheme

I'm customizing color scheme, and almost everything working right. Except command output tab is showing errors in red italic font, color settings for which I cannot find anywhere! In font&color settings there are "fonts", "colors", "common syntax",…
Sly
  • 415
  • 2
  • 8
5
votes
1 answer

Komodo IDE 6's slow autocomplete problems with Javascript

I've been trying out Komodo IDE 6 for the last few days. I've always liked Komodo but I'm starting to get annoyed by something: The autocomplete is way too slow/buggy. Certain variables just won't give any autocomplete tips. Sometimes you have to…
Jelle De Loecker
  • 20,999
  • 27
  • 100
  • 142
5
votes
2 answers

Komodo Edit - how to add code completion to a my files

I am new to Komodo Edit. How can I add IntelliSense to my own files? For example: myFirst.js that includes auto completion for objects or functions that were defined in mySecond.js? Also, how can I add auto completion to my CSS file from my HTML…
yoav barnea
  • 5,836
  • 2
  • 22
  • 27
5
votes
6 answers

What's a free Perl IDE for Windows?

I am looking for a Windows Perl IDE with debugger like Komodo but free. I have seen Eclipse+EPIC but I don't want to install Eclipse here. Padre doesn't have debugger built in.
Night Walker
  • 20,638
  • 52
  • 151
  • 228
5
votes
3 answers

Explore a COM Object in PHP

What would be the proper way to explode a COM object for debugging? I have a 3rd party function that returns a multilevel object. The documentation is non existant, so I'd like to be able to echo everything out of the object or debug it in Komodo…
shaiss
  • 2,000
  • 5
  • 22
  • 33
5
votes
2 answers

Komodo 7 or 8 code completion for django

I am using Komodo 7 for writing my django/python code. There is one thing that I really liked when I used Eclipse for my python stuff and it was that I could do : assert isinstance([variable],[type]) and by that help eclipse determine the coding…
Nuno_147
  • 2,817
  • 5
  • 23
  • 36
5
votes
2 answers

anonymous function doesn't always return a value

I've got JavaScript code like this => (function(){ document.getElementById("element").onclick = function(){ var r = confirm("Are you sure ?"); if (r){ return true; } else { return false; } …
nanobash
  • 5,419
  • 7
  • 38
  • 56
4
votes
2 answers

Writing Komodo Edit extensions in Python

Has anybody got any idea how to write an extension for Komodo Edit 6 in Python?
user559611
4
votes
5 answers

PHP Komodo getter/setter auto-generation

Does Komodo support getter/setter auto generation a la NetBeans or Eclipse? If so how do I use it? I can't seem to find it.
ashurexm
  • 6,209
  • 3
  • 45
  • 69
4
votes
1 answer

Getting Unit Tests to work with Komodo IDE for Python

I've tried to run the following code on Komodo IDE (for python): import unittest class MathLibraryTests(unittest.TestCase): def test1Plus1Equals2(self): self.assertEqual(1+1, 2) Then, I created a new test plan, pointing to this…
devoured elysium
  • 101,373
  • 131
  • 340
  • 557
4
votes
3 answers

Whitespace problems with python

I'm currently using Komodo Edit in Windows 7, however, I have experienced this problem on my Mac with TextWrangler. For whatever reason I'm getting some kind of whitespace error which is a huge problem when I'm writing in Python. For example,…
user1104854
  • 2,137
  • 12
  • 51
  • 74
3
votes
5 answers

Komodo Extension

Continuing on with my Python learning, I just installed Komodo edit, are there any recommended add ins/extensions that I should include? Any recommendations on using it or another GUI designer (TkInter base)?
meade
  • 22,875
  • 12
  • 32
  • 36
3
votes
3 answers

Virtualenv and Komodo IDE 6 on Windows

As a developer that has worked on more than one python project at once, I love the idea of Virtualenv. But, I'm currently trying to get Komodo IDE to play nice with VirtualEnv on a Windows box. I've downloaded virtualenvwrapper-win and got it…
David S
  • 12,967
  • 12
  • 55
  • 93
1
2
3
15 16