ide

Grails GGTS IDE GrailsProcessDiedException: Grails process died

雨燕双飞 提交于 2019-12-30 01:02:07
问题 I have faced following weird exception on GGTS IDE . Command terminated with an exception: org.grails.ide.eclipse.longrunning.client.GrailsProcessDiedException: Grails process died (see details for partial output) Grails process died ------System.out:----------- ------System.err:----------- I tried with following releases and still got same issue groovy-grails-tool-suite-3.3.0.RELEASE-e3.8.2-macosx-cocoa-x86_64-installer.dmg groovy-grails-tool-suite-3.3.0.RELEASE-e4.3-macosx-cocoa-x86_64

Python IDE

浪尽此生 提交于 2019-12-29 23:45:34
Python IDE 本文为大家推荐几款款不错的 Python IDE (集成开发环境),比较推荐 PyCharm,当然你可以根据自己的喜好来选择适合自己的 Python IDE。 PyCharm PyCharm 是由 JetBrains 打造的一款 Python IDE。 PyCharm 具备一般 Python IDE 的功能,比如:调试、语法高亮、项目管理、代码跳转、智能提示、自动完成、单元测试、版本控制等。 另外,PyCharm 还提供了一些很好的功能用于 Django 开发,同时支持 Google App Engine,更酷的是,PyCharm 支持 IronPython。 PyCharm 官方下载地址: http://www.jetbrains.com/pycharm/download/ 效果图查看: Sublime Text Sublime Text 具有漂亮的用户界面和强大的功能,例如代码缩略图,Python 的插件,代码段等。还可自定义键绑定,菜单和工具栏。 Sublime Text 的主要功能包括:拼写检查,书签,完整的 Python API , Goto 功能,即时项目切换,多选择,多窗口等等。 Sublime Text 是一个跨平台的编辑器,同时支持 Windows、Linux、Mac OS X等操作系统。 使用Sublime Text 2的插件扩展功能

IntelliJ 平台 2020 年路线图

一世执手 提交于 2019-12-29 21:30:45
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> <section data-role="outer" label="Powered by 135editor.com"> 点击关注上方“Java技术江湖”,设为“置顶或星标”,第一时间送达技术干货。 转自:OSCHINA www.oschina.net/news/112204/intellij-platform-roadmap-for-2020 JetBrains 发文介绍了其 IntelliJ 平台 2020 年的路线图。 文章主要介绍了当前 JetBrains 在改进 IntelliJ IDEA 和基于 IntelliJ 平台的 IDE 方面所做的一些工作,主要包括性能和对现代开发工作流的支持两个方面。改进结果将会在明年发布,其中一些会发布在春季的 2020.1 版本中。 性能 索引性能 与 IDE 性能有关的两个主要痛点是启动性能,索引耗时较长的工具被认为是重量级的。JetBrains 表示,明年关注点将转向索引性能方面。 针对此问题官方采取了多管齐下的方法。首先,支持使用预建的索引块,这样每个用户 IntelliJ 实例都不必执行索引java.lang.String类的工作。计划明年逐步提供支持,从 JDK 开始,然后涵盖 Maven Central 的库以及其它 IDE 中的解释器和包

Using Vim for Lisp development

时光怂恿深爱的人放手 提交于 2019-12-29 10:06:07
问题 I've been using Lisp on and off for a while but I'm starting to get more serious about doing some "real" work in Lisp. I'm a huge Vim fan and was wondering how I can be most productive using Vim as my editor for Lisp development. Plugins, work flow suggestions, etc. are all welcome. Please don't say "use emacs" as I've already ramped up on Vim and I'm really enjoying it as an editor. 回答1: Limp aims to be a fully featured Common Lisp IDE for Vim. It defaults to SBCL, but can be changed to

How to set shortcut to a line of code in Eclipse IDE editor

*爱你&永不变心* 提交于 2019-12-29 09:09:03
问题 I'm after a feature in eclipse that allows me to allocate a shortcut to a line (say line number 55) then go somewhere else in the same file and hit the shortcut then IDE shows me the line 55. I have used this feature in Delphi IDE. Using CNTL + number keys[1,2,...,0] a shortcut to line where the curser is will be created. This shortcut only has effect within the editor and each opened file would have its own shortcuts. Is there such a feature in eclipse? Is there any plugins out there which

Turn off autocomplete in PhpStorm

耗尽温柔 提交于 2019-12-29 08:32:21
问题 Right now if I type in $ into Jetbrains PhpStorm IDE, it will display a whole bunch of suggestions (e.g. variables that have already been declared) which slows down my typing. Is there a way to configure PhpStorm to NOT do this? In other words, turn off auto-complete or only do auto-complete if I press Ctrl + Space and not when I just type in $ ? 回答1: Disable code completion? See Settings/Preferences(depends on OS) - IDE Settings - Editor - Code Completion There you should find an option

What GUI should I run with JUnit(similar to NUnit gui)

China☆狼群 提交于 2019-12-29 07:30:35
问题 What GUI should use to run my JUnit tests, and how exactly do I do that? My entire background is in .NET, so I'm used to just firing up my NUnit gui and running my unit tests. If the lights are green, I'm clean. Now, I have to write some Java code and want to run something similar using JUnit. The JUnit documentation is nice and clear about adding the attributes necessary to create tests, but its pretty lean on how to fire up a runner and see the results of those tests. 回答1: Eclipse is by-far

PHPStorm unable to make external connection with xdebug

夙愿已清 提交于 2019-12-29 07:29:06
问题 My OS is Mac Mountain lion. My PhpStorm version is 5.0.4. Here is my php xdebug info: xdebug.remote_autostart => Off => Off xdebug.remote_connect_back => Off => Off xdebug.remote_cookie_expire_time => 3600 => 3600 xdebug.remote_enable => On => On xdebug.remote_handler => dbgp => dbgp xdebug.remote_host => 127.0.0.1 => 127.0.0.1 xdebug.remote_log => data/logs/xdebug.log => data/logs/xdebug.log xdebug.remote_mode => req => req xdebug.remote_port => 9000 => 9000 xdebug.idekey => no value => no

What vim plugins are available for Eclipse? [closed]

百般思念 提交于 2019-12-29 02:21:17
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 8 years ago . I have found three and would like to know if there are others and what their advantages or disadvantages might be: Vimplugin Vrapper

JetBrains / IntelliJ keyboard shortcut to collapse all methods

我只是一个虾纸丫 提交于 2019-12-28 07:48:32
问题 I'm working on some legacy code that has a class that is 10,000+ lines of code and has 100s of methods. Is there a shortcut for any JetBrains IDE (since the shortcut would likely be shared across all of them) to collapse all the methods / functions so that only the method signatures are shown? Something like this: public String myMethod(String arg1, int arg2){...} public String mySecondMethod(String arg1, int arg2){...} 回答1: You may take a look at intellij code folding shortcuts. For Windows