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

224 questions
73
votes
10 answers

Creating class instance properties from a dictionary?

I'm importing from a CSV and getting data roughly in the format { 'Field1' : 3000, 'Field2' : 6000, 'RandomField' : 5000 } The names of the fields are dynamic. (Well, they're dynamic in that there might be more than Field1 and Field2, but I know…
Rizwan Kassim
  • 7,421
  • 3
  • 22
  • 33
47
votes
12 answers

How to start IDLE (Python editor) without using the shortcut on Windows Vista?

I'm trying to teach Komodo to fire up IDLE when I hit the right keystrokes. I can use the exact path of the shortcut in start menu in the Windows Explorer location bar to launch IDLE so I was hoping Komodo would be able to use it as well. But,…
Jason Dagit
  • 13,034
  • 8
  • 31
  • 54
36
votes
20 answers

What are the most important features of an IDE for Perl development?

As some of you might know I am the lead developer of Padre, the Perl IDE. In the first year of its development Padre became an acceptable text editor with some extra features for Perl development. I'd like to ask the Stack Overflow community for…
szabgab
  • 5,884
  • 9
  • 45
  • 61
16
votes
9 answers

Komodo Edit and Notepad++ ::: Pros & Cons ::: Python dev

I'm using Notepad++ for python development, and few days ago I found out about free Komodo Edit. I need Pros and Cons for Python development between this two editors...
Jox
  • 6,951
  • 14
  • 46
  • 63
9
votes
2 answers

How can I integrate Moose into Komodo?

ActiveState's Komodo is my preferred Perl IDE on OS X and XP. Recently I've begun coding new projects using Moose. Has anyone found a way to teach Komodo how to "identify" Moose's Attribute and Method declarations? I would just love to see…
lexu
  • 8,440
  • 5
  • 42
  • 62
8
votes
1 answer

Indent guide plugin for gedit (python)

screenshot http://www.activestate.com/padfiles/komodo_edit/komodo_edit_linux.png See the indent guides? They're damn helpful when writing Python code. Any chance I could get something similar for gedit? I wouldn't mind having to write my own plugin,…
aviraldg
  • 8,978
  • 6
  • 36
  • 56
8
votes
5 answers

Komodo Edit 5.2 Django Template Syntax Error - Info: previously mentioned

I am using Komodo Edit 5.2 for editing html and Django template files. It always shows a single syntax error inside the first {% block %} area on the first tag of my template. For example: {% extends "base.html" %} {% load i18n %} {% block title…
Lance McNearney
  • 9,225
  • 4
  • 44
  • 55
7
votes
3 answers

Komodo Edit 8.5 tab settings

I use Komodo Edit 8.5 and I have problems with tabs. When I press tab key it jumps 8 characters instead of 4 which I use in preferences (Edit – Preferences - Indentation). The "number of spaces per indent" is 4 and "Width of each tab character" is 4…
igoemon
  • 168
  • 2
  • 13
7
votes
2 answers

Komodo Python auto complete: type inference by variable metadata?

I'm using Komodo Edit for Python development, and I want to get the best out of the auto complete. If I do this: a = A() a. I can see a list of members of A. But if I do this: a = [A()] b = a[0] b. It does not work. I want to be able to do…
Gary van der Merwe
  • 7,946
  • 3
  • 38
  • 73
7
votes
3 answers

Komodo Edit disable autocomple

I am using Komodo Edit 8 and its autocomplete feature is totally annoying. As soon as I type "for i" , it autofills in this: for i in range: code Now i have to delete it manually to continue typing. I tried to turn off "Enable automatic…
user2216947
  • 71
  • 1
  • 2
6
votes
1 answer

Is it possible to use komodo edit as git core.editor (i.e. without forking)?

When using a gui text editor (e.g. komodo edit) as core editor for git (commit messages), that editor process must not be forked or else git will assume an empty commit message, because it "thinks" the editor would already be finished without…
RSeidelsohn
  • 1,042
  • 16
  • 29
6
votes
2 answers

What Komodo color scheme do you use?

I'm looking for a good color scheme for Komodo IDE.
Massimo Fazzolari
  • 5,085
  • 3
  • 24
  • 34
6
votes
3 answers

How to debug SCons script

I have a SCons script that I need to debug. Somewhere down inside of everything that is happening, I have a problem and I need to find out where it is going bad. I'd like to debug the SCons script, but I'm not sure how to get it set up. I have both…
jlconlin
  • 11,876
  • 20
  • 62
  • 91
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,045
  • 5
  • 34
  • 51
6
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,063
  • 6
  • 33
  • 56
1
2 3
14 15