komodoedit

Advanced Find & Replace / Text Expand / Macros

↘锁芯ラ 提交于 2019-12-02 06:53:25
Hopefully a nice quick one for someone. I'm working on a project that requires a specific link being written around 400 or so locations. Each link is the same, except it has the town's name in it, such as: <li><a href="/contact-details.html?location=Andover">Andover</a></li> I'm currently using Komodo Edit to write my projects, and I have Zen Coding installed and a decent knowledge of the built-in Snippets functionality. I know that using Snippets, I could create the link above from the word Andover in a key-binding, but as far as I know only one line at a time. I also know that I could use

komodo edit 7.1 doesn't recognize html5 tags in php mode

浪子不回头ぞ 提交于 2019-12-02 01:12:49
问题 The title is pretty explicative! In php mode komodo edit assume html4 and raise errors when html5 tags like article, time, section are used. This could be pretty troublesome since it could cover php errors. Is there a way to fix this? 回答1: Maybe solution found: Preferences -> Languages -> HTML -> Default HTML Document Type -> HTML5 来源: https://stackoverflow.com/questions/12253843/komodo-edit-7-1-doesnt-recognize-html5-tags-in-php-mode

jquery support works in html but not in .js?

只愿长相守 提交于 2019-12-01 12:18:49
Trying out komodo to build a jquery ui widget.. I enabled the jquery api reference and in a .html file it works great.. I then open my widget.js file and type in; (function($) { followed by $. I would expect to get intellisense here, but instead I get: No completions found. (Error determining completions) Is this a file extension thing? Are jquery ui widgets just unsupported? From the guys at Komodo; The problem is that Komodo doesn't know the context of the anonymous function call - in other words Komodo is not smart enough to know that "jQuery" == "$" in this case. But all is not lost, you

Calltips/Docstring while viewing function list?

放肆的年华 提交于 2019-12-01 08:01:16
I just recently switched to Komodo for Python programming, and I'm loving it so far. I love how if I type a function name, followed by the open-paren ( , it opens the calltip/docstring. I also love how if I type a module name, followed by . , it opens a list of available functions. My question is, is it possible to get the calltip/docstring to popup when I have the function list up? In other words, I want to be able to see what each function does (the docstring) before I insert it and open the argument list with the ( . The reason is that I find myself needing a function, and scrolling through

Calltips/Docstring while viewing function list?

眉间皱痕 提交于 2019-12-01 06:11:19
问题 I just recently switched to Komodo for Python programming, and I'm loving it so far. I love how if I type a function name, followed by the open-paren ( , it opens the calltip/docstring. I also love how if I type a module name, followed by . , it opens a list of available functions. My question is, is it possible to get the calltip/docstring to popup when I have the function list up? In other words, I want to be able to see what each function does (the docstring) before I insert it and open

PermissionError [errno 13] when running openpyxl python script in Komodo

此生再无相见时 提交于 2019-11-30 09:07:20
问题 I am having trouble using openpyxl scripts in Komodo edit 9 and python 3.4 on Windows 7. I copied some openpyxl code to learn, but it won't execute from Komodo. I receive a permission error 13. I checked my path and python34 is present. The same script will run when I use IDLE or Command Prompt. My Komodo command is currently: %(python3) -u %F Any ideas on what may be causing this issue? The code and error are included below from openpyxl import Workbook from openpyxl.compat import range from

PermissionError [errno 13] when running openpyxl python script in Komodo

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-29 12:02:24
I am having trouble using openpyxl scripts in Komodo edit 9 and python 3.4 on Windows 7. I copied some openpyxl code to learn, but it won't execute from Komodo. I receive a permission error 13. I checked my path and python34 is present. The same script will run when I use IDLE or Command Prompt. My Komodo command is currently: %(python3) -u %F Any ideas on what may be causing this issue? The code and error are included below from openpyxl import Workbook from openpyxl.compat import range from openpyxl.cell import get_column_letter wb = Workbook() dest_filename = 'empty_book.xlsx' ws1 = wb

Komodo - watch variables and execute code while on pause in the program

被刻印的时光 ゝ 提交于 2019-11-28 12:54:15
With c# in the Visual Studio IDE I can pause at anytime a program and watch its variables, inspect whatever I want. I noticed that with the Komodo IDE when something crashes and it stops the flow of the program, I can do exactly the same. But for some reason, it seems that when I try to do the same when I manually pause the program, the same cannot be achieved. Am I doing something wrong or it just isn't possible? In the later case, could anyone care to explain me why? Is it IDE related or Python related? Thanks edit: Other question, how can I then continue the program? From what I see, after

Komodo - watch variables and execute code while on pause in the program

跟風遠走 提交于 2019-11-27 07:23:35
问题 With c# in the Visual Studio IDE I can pause at anytime a program and watch its variables, inspect whatever I want. I noticed that with the Komodo IDE when something crashes and it stops the flow of the program, I can do exactly the same. But for some reason, it seems that when I try to do the same when I manually pause the program, the same cannot be achieved. Am I doing something wrong or it just isn't possible? In the later case, could anyone care to explain me why? Is it IDE related or