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
0
votes
1 answer

Komodo couldn't find breakpoints outside of the main script

I'm debugging php symfony2 project with komodo, everything is working when I put a breakpoint inside app_dev.php script, debugger stops right there when I'm running debug session. But when I put a breakpoint inside other file, which code is 100%…
0
votes
3 answers

Komodo IDE 7 running code line by line

Is it possible to run a part of code in Komodo IDE 7 line by line? For example my code using python: lets = (1, 2, 3, 5, 4, 6, 7) jets = list(lets) count = 0 for i in range(len(lets)): for j in range(i + 1, len(lets)): if lets[i] >…
ufo
  • 359
  • 1
  • 5
  • 11
0
votes
2 answers

Does Komodo edit have a quick format button?

Is there a keyboard shortcut or menu item I'm not seeing somewhere to format my html in Komodo Edit? I'm mostly worried about indentation. I have about 1500 lines of jumbled mess from a client I need to clean up before I can start updating his…
Technivorous
  • 1,682
  • 2
  • 16
  • 22
0
votes
0 answers

How to execute VPython through Komodo (no module named "visual" error)

On running scripts through an OSX-Mavericks machine that import the visual module from VPython, Komodo Edit throws up an error saying something to the effect of "no module named 'visual'". I've played around with the placing of the VIDLE program,…
0
votes
1 answer

Is there any way (e.g. add-on) to show a file list when switching tabs?

I would like to have Komodo Edit display the list of files it will switch to when I switch to another tab via Ctrl+Tab, as is the case in Eclipse or IntelliJ IDEA IDEs. Is there any way to achieve this, maybe through a hidden setting or an add-on…
Arc
  • 11,143
  • 4
  • 52
  • 75
0
votes
0 answers

php output differs in firefox and komodo IDE

I installed komodo IDE 8.5 to write and test php codes. The first program I tried to test was this: "; $current_user = $username; echo…
Sam
  • 485
  • 2
  • 8
  • 17
0
votes
0 answers

Integrating CodeSniffer with Komodo IDE to sniff remote files

I have CodeSniffer integrated with Komodo and I'm trying to CodeSniff remote (SCP) files. My issue is that CS tries to open the file instead of reading what's in memory in the editor pane. It can't open the SCP URL and fails. Has anybody been…
0
votes
2 answers

User input in perl - Issue with running script in KomodoEdit

i wrote this tiny code on gedit and ran it :- #/usr/bin/perl print "Enter the radius of circle: \n"; $radius = <>; chomp $radius; print "radius is: $radius\n"; $circumference = (2*3.141592654) * $radius; print "Circumference of circle with radius :…
rgolwalkar
  • 237
  • 1
  • 3
  • 10
0
votes
2 answers

indent to next line in javascript

i am using komodo IDE 8.5 I am trying to indent to the next line to prevent code from extended really far to the right but everytime i just indent. it breaks the line and dose not register. I'm not quite sure how to word it. example: var price =…
mussy46
  • 9
  • 2
0
votes
1 answer

Does Komodo Edit list variables?

I'm using Komodo Edit as an IDE for PERL. Is there a way to show all the declared variables on the side panel? I know it keeps track of it since there is a red wiggly line if I use a variable that has not been previously declared - would be nice…
Ahdee
  • 4,679
  • 4
  • 34
  • 58
0
votes
1 answer

Can FlyCheck be used with Komodo(for Django) for checking syntax on the fly?

I want to use Komodo IDE for building one Django project.I want to use flycheck syntax checker so that it indicates the syntax errors on the fly.If fly-check cannot be integrated with Komodo,is there any other possibility to syntax checking on the…
0
votes
2 answers

How to set the default directory in Komodo from an an extension?

I'm working on a KomodoIDE/KomodoEdit extension that creates a new file and then opens it in a new editing tab using ... var obsvc =…
qpl guy
  • 1
  • 3
0
votes
1 answer

Moving tabs in Komodo

There is no command for rearranging tabs in Editor in Key Bindings menu (moving a tab to the left or to the right). So is there a way to do it in Komodo Edit?
proowl
  • 101
  • 2
  • 7
0
votes
1 answer

Komodo php debugger stop at the beginning of script

I'm using Komodo IDE to debug PHP. It always stop at the beginning of a script although there is no breakpoint. Is there anyway to disable it? Thanks.
leon
  • 435
  • 1
  • 4
  • 12
0
votes
1 answer

Komodo Edit 8.5 Tab key

I am new to Komodo edit but I have searched and read numerous articles and help and can't understand why when I press the Tab key it moves over one space as if I press the Space Bar?? example: (in any other program on my PC when I press Tab I get 5…
ScottC
  • 452
  • 8
  • 25