ide

Does Visual Studio 2010 have tooling support for IronRuby?

微笑、不失礼 提交于 2019-12-11 04:24:38
问题 I am interested in the following features: Code highlighting, Intellisense, Refactorings, Code navigation (Go to Definition etc.). If this functionality is missing from Visual Studio 2010 maybe Microsoft is planning to add these features in the future or there are community project to develop IronRuby tooling add-in? 回答1: Microsoft has recently released IronPython tools for Visual Studio and they are working on the same thing for IronRuby. No planned release date yet but they are working on

AutoCompletion for my DSL keywords in Geany

匆匆过客 提交于 2019-12-11 04:18:40
问题 Geany(IDE) supports Autocompletion or IntelliSense as you program, but this is done based on the words you've used in the code so far. Is there any way so I could have Autocompletion for my language keywords? 回答1: You can achieve this by writing your own tag file. It should be name like <somename>.<filetype>.tags and can be stored e.g. inside .geany-folder or inside global folders. You can import it via Tools-menu. The tag file contains of a list of your methods, functions etc of your

Is there a way to do runtime inspection for django apps? (Any IDE that does this?)

本小妞迷上赌 提交于 2019-12-11 03:56:28
问题 I want to do runtime inspection for django apps, meaning, I want to run an app and be able to break/step through/inspect runtime variables. Is there any IDE that support this or anyway to commandline run django to do this? I know that the Django shell exists, however, that just sets up an environment and doesn't provide inspection of running code. Thanks you 回答1: Wingware's WingIDE supports live inspecting and debugging: http://wingware.com/ -> http://wingware.com/doc/howtos/django Edit: It

Global bookmarks in Delphi editor

廉价感情. 提交于 2019-12-11 03:34:01
问题 Is there any way to have bookmarks which will remember not only line, but file also in Delphi IDE? May be there's an expert (plugin) which provide such functionality? I can workaround this with either Breakpoints or TODOs, however, what I need is bookmarks, so that they will not interfere with debugging and will be less permanent than TODOs. 回答1: CnPack has a Bookmark Browser which is exactly what you're looking for 来源: https://stackoverflow.com/questions/14690819/global-bookmarks-in-delphi

What features would a *perfect* Python debugger have? [closed]

房东的猫 提交于 2019-12-11 03:33:13
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 9 months ago . Please tell me which features you wish your current Python debugger had. I'm creating a new Python IDE/debugger and am looking forward to challenging requests! 回答1: Forgive me for the shameless functional programming plug, but... The ability to step backwards . 回答2: I use

In Selenium IDE, can I use wildcards with the type command?

天大地大妈咪最大 提交于 2019-12-11 03:12:00
问题 I am new to Selenium IDE, which has been tremendously helpful in my testing, but I have run into a snag. I am trying to enter a fake credit card number in my company's testing environment (e-commerce company), but the XPath changes each time I go back to the page. The path is below. //*[@id="dwfrm_paymentinstruments_creditcards_newcreditcard_number_d0hnrobkriuu"] d0hnrobkriuu is what changes each time. I tried the following alternatives - //*[@id="dwfrm_paymentinstruments_creditcards

Emulator showing black screen on android studio

谁说胖子不能爱 提交于 2019-12-11 03:04:47
问题 I am trying to run emulator on android studio. The ide shows the message -netdelay none -netspeed full -avd Nexus_5_API_22 creating filesystem with parameters: Size: 69206016 Block size: 4096 Blocks per group: 32768 Inodes per group: 4224 Inode size: 256 Journal blocks: 1024 Label: Blocks: 16896 Block groups: 1 Reserved block group size: 7 Created filesystem with 11/4224 inodes and 1302/16896 blocks emulator: device fd:792 HAX is working and emulator runs in fast virt mode emulator: emulator

Missing parts of Help Menu - Eclipse Luna

末鹿安然 提交于 2019-12-11 03:00:53
问题 I'm working in Eclipse Luna, after install Oracle Enterprise Pack for Eclipse (OEPE) Help Menu shows with missing items. I'm attaching a screenshot Missing items: Also, I checked the Menu Visibility: Check for updates Install New Software.. Installation Details and So on.. Any ideas? 回答1: Look in 'Window > Customize Perspective'. Select the 'Menu Visibility' tab and open the 'Help' section. You should be able to enable the missing menu items there. 回答2: I faced the same issue after updating

How can I write to multiple lines simultaneously in Geany?

邮差的信 提交于 2019-12-11 02:27:24
问题 I want to modify the beginning of every line of a txt file in Geany. Somehow it is possible to write in multiple lines at the same time (maybe with box selection?). How to do this? 回答1: You need to install before the plugin Extra Selection. For my configuration (Debian/Buster, Geany 1.33) I add to configure shortcuts key. See plugin manual for more details : Usage : Under Tools -> Extra Selection, there are 7 new items: "Column Mode", "Select to Line", "Select to Matching Brace", "Toggle

How to wean oneself from IDE to text editor?

自闭症网瘾萝莉.ら 提交于 2019-12-11 02:24:14
问题 I've been using IDE's for various languages over the years (VS, IntelliJ, Eclipse, NetBeans, FlashDevelop, etc), and i've always found them slow and cluttered (yes i know windows can be hidden, rearranged and what not). Recently however i've learned and become somewhat proficient with VIM and have been using it for as many projects as possible. My problem is i've grown quite attached to the various features that the IDE's provide (intellisense, refactoring, embedded docs, the list goes on).