ide

How can I change top level package name in IntelliJ IDEA?

夙愿已清 提交于 2019-12-03 02:57:24
问题 I have a package structure: com.report.domain.model I would like to change it to com.reporting.domain.model. When I select Refactor → Rename on package com.report.domain.model, I only see an option to rename 'model'. I have tried switching between Project view and Package , but to no avail. I know how to make this change in Eclipse via Navigator view, but how can I do the same in IntelliJ IDEA? 回答1: In the Project Window, click on the Gears icon in the title bar and deselect "Compact Empty

Which environment, IDE or interpreter to put in practice Scheme?

拜拜、爱过 提交于 2019-12-03 02:49:47
I've been making my way through The Little Schemer and I was wondering what environment, IDE or interpreter would be best to use in order to test any of the Scheme code I jot down for myself. infinitetape Racket ( formerly Dr Scheme ) has a nice editor, several different Scheme dialects, an attempt at visual debugging, lots of libraries, and can run on most platforms. It even has some modes specifically geared around learning the language. I would highly recommend both Chicken and Gauche for scheme. PLT Scheme (DrScheme) is one of the best IDEs out there, especially for Scheme. The package you

Crash Jetbrains ide with Yosemite Mac osX (Webstorm, intellij)

匿名 (未验证) 提交于 2019-12-03 02:49:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: Here the link : Apple JDK 1.6 回答1: Please do not edit your Info.plist file as it will break the application digital signature and prevent the patch updates . I was able to get phpStorm working properly again on my Mac ( Yosemite ) by installing this apple support package: Java for OS X 2014-001Java This package installs the same version of Java 6 included in Java for OS X 2013-005 which apparently plays nice with JetBrains. Hope this helps. 回答2: It's easy to change Jetbrains' products to use jdk1.7: Open Application folder Choose

Opensource Online IDE [closed]

匿名 (未验证) 提交于 2019-12-03 02:45:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: There're several online IDEs for PHP and some even for Python , but is there any open-source online IDE like IDEone that supports atleast the major languages (PHP, Python, Ruby etc..)? 回答1: Bespin is a sort interesting online js based editor in development primarly by Mozilla Labs. It's open source, saves files on the cloud and also supports some SCMs (git and svn at the moment), files and project sharing. 回答2: I created ShiftEdit Web Based IDE It uses Bespin and has basic PHP support. Includes Syntax highlighting, Integrated (S)FTP, Tabs,

Python 3 IDE for teaching [closed]

拟墨画扇 提交于 2019-12-03 02:42:53
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . With Python 3 maturing and slowly gaining adoption, we're taking the plunge and adopting it in our introductory programming classes for kids aged 12-18. Is there a free (preferably open source) IDE you'd recommend that supports Python 3, preferably meeting the following criteria in order of necessity: Cross

How to show method parameters hint in Intellij IDEA?

寵の児 提交于 2019-12-03 02:29:30
问题 int beginIndex, int endIndex is important when we invoke methods. How to show this when the cursor is in the brackets? 回答1: Got the final answer. Just Ctrl + P in Windows/Linux or ⌘ + P in macOS. 回答2: To view the method parameters Place the caret anywhere within the call of the desired method or function. Choose View | Parameter Info on the main menu or press Ctrl + P . To configure the behavior of the view parameter information functionality Open the IDE Settings and click Code Completion

Which IDEs and text editors can deduce type of variables declared using auto keyword in C++11

旧城冷巷雨未停 提交于 2019-12-03 02:23:52
In "Almost always auto" article Herb Sutter lists several reasons for declaring variables using auto keyword. He says that actual variable type can be automatically deduced by IDE and shown by hovering over variable name. I would like to know which IDEs and text editors (or plugins) currently support "auto" variable type deduction. Edit: List of IDEs from answers: Visual Studio 201x Eclipse Qt Creator 2.7.0 KDevelop 4.5.1 Text editors What about Vim, Emacs, Sublime Text, etc. - are there plugins which supports type deduction? Visual Studio 2010, Visual Studio 2012, and Visual Studio 2013

Emacs as an IDE for large C++ projects

南笙酒味 提交于 2019-12-03 02:23:45
问题 I am a Emacs newbie. I have to trying to search on how to use Emacs for use with large C++ projects particularly to index code and auto-complete function names and behave Eclipse-like. I had been using Vim for some time where I used ctags to index code in my project and Vim used to try auto-completing my code using a drop down menu of options. I am trying to achieve the same with Emacs now. But, during my search, results pointed to CEDET and auto-complete and other 3rd party plugins. I tried

What's the best free IDE for learning smalltalk? [closed]

≯℡__Kan透↙ 提交于 2019-12-03 02:21:31
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. What do you think is a good IDE for learning SmallTalk? I'll only be using it as a hobby, so it has to be free. I think Squeak is the way to go. It has an entire smalltalk environment and is constantly updated. Its what I used for learning and is actually even a cool app in itself. You should also consider Pharo . Pharo is a fork of Squeak. Their goals are: a clean and lean open-source Smalltalk platform, derived from

Xdebug PhpStorm: Waiting for incoming connection with ide key

匿名 (未验证) 提交于 2019-12-03 02:16:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I've searched a lot for this problem when debugging php using PhpStorm with xdebug, I found 3 or 4 links discussing this problem, but none of them are useful.My Xdebug's version is 2.2.3, and PhpStorm'version is 6.03. I could debug every line step by step except this one $this->link = mysql_connect($this->dbserver, $this->dbuser, $this->dbpass); PhpStorm shows this error:Waiting for incoming connection with ide key "14841". Here are my xdebug configuration: zend_extension="/usr/lib/xdebug.so" xdebug.remote_autostart=1 xdebug.show_local_vars