intellij-15

sbt run/debug configuration broken showing unknown after upgrading intellij to 2020.1

情到浓时终转凉″ 提交于 2021-01-29 05:10:25
问题 I just upgraded IntelliJ community edition to latest version 2020.1 as of today. All my SBT run/debug configurations are broken and currently show Unknown under Edit configuration. I have checked the workspace.xml and configuration seems correct. I have also checked I've got the latest SBT plugin. Any help or pointers will be much appreciated as I have dozens of projects with lots of configurations so will be annoying to have to create them again. 回答1: After a couple of hours finally figure

How to manually install IntelliJ IDEA patch update?

心已入冬 提交于 2020-08-22 05:53:07
问题 I get the following connection error while updating IntelliJ behind proxy (the proxy ping in IntelliJ is working though): Connection Error: Failed to prepare an update: Cannot download 'http://download.jetbrains.com/idea/IU-xxx-patch-win.jar': Connection closed at byte 17920. Expected 20941088 bytes. , response: 200 OK Open download page. Solution? I was able to download the file ...patch-win.jar via a browser. How can I now install this patch manually for IntelliJ in a Windows environment?

VS Code Regex find and replace with lowercase

你说的曾经没有我的故事 提交于 2020-03-04 03:50:11
问题 Is there a way to do a find and replace (regex) all uppercase characters in the matching strings with lowercase ones? Preferably in VS Code or IntelliJ I already have my regex ready. Edit: To be cleare I already know who to find the matches. But looking for that function to replace all uppercase matches with lowercase ones 回答1: Press Ctrl + F Select .* and enter your RegEx Press Ctrl + Shift + L (Select All) Press Ctrl + Shift + P Choose Transform to Lowercase 回答2: Open the find & replace

Is it possible to change the console font size in IntelliJ IDEA

99封情书 提交于 2020-01-10 20:15:23
问题 Is it possible to change the console font size in IntelliJ IDEA? I changed the actual text size under Settings > Editor > Font , but "console/terminal" font is too small. I'm using Community Edition 15 回答1: Works on every Intellij Version Press Ctrl+Shift+a and search for console font : Select Console Font and the right settings menu will be opened. Intellij Version < 2018 Open Settings -> Editor -> Colors & Fonts -> Console Font You can change font size and colors there but you have to save

IntelliJ live template for logging a selected variable in js

感情迁移 提交于 2020-01-03 20:04:45
问题 I would like to add a new line right after the line where I selected a variable name. This line should than contain the selection. Example: var variable = getValue(); I select the word "variable", press CMD + J to apply a live template or CMD + Alt + T to surround the selection with a live template and get something like this: var value = getValue(); console.log('[value]', value); 回答1: This doesn't work exactly as you expect, but the result is the same. Create a new Live Template (Settings →

IntelliJ File mask not working on simple excluding file pattern! Why?

放肆的年华 提交于 2020-01-02 03:24:05
问题 Follows this page https://www.jetbrains.com/help/pycharm/2016.1/find-and-replace-in-path.html?origin=old_help#mask , it should be able to exclude many files using "!" symbol in front of the regular pattern like: *.java, when doing text search inside IntelliJ projects. On my project, when I fired Ctrl + Shift + F to do text search for string xyz. There's over 100+ results return in both *.ftl and *.java files. I tried to reduce the results on only ftl files by changing the "File mask(s)"

How to remove (phantom) breakpoints pointing to old/missing source from Intellij IDEA?

无人久伴 提交于 2019-12-23 22:18:08
问题 Using Intellij (v14 and now v15) I have put breakpoints to debug no-yet released classes coming from an external dependency (usually a snapshot version) for a web app running in Tomcat 7+. when I change that external dependency to a released version, recompile the project and run in debug mode; IntelliJ still halts the execution at the old class breakpoint even though the breakpoint no longer exists in the breakpoint list view (from menu: Run > Breakpoints). I have tried the following: Clean

IntelliJ collapsing single line methods

点点圈 提交于 2019-12-18 03:03:06
问题 Since I've updated my version of intelliJ (14.x to 15.x) it has started automatically collapsing single line methods in the Java editor: Previous version: public void setContext(SecurityContext context) { this.context = context; } Latest version: public void setContext(SecurityContext context) { this.context = context; } Is there a way to prevent this? I find the original version much easier on the eyes! Thanks. 回答1: Open 'Settings' from the File menu. Under 'Editor' -> 'General' -> 'Code

Make IntelliJ IDEA 15 portable

你。 提交于 2019-12-13 19:04:25
问题 There are a lot of Tutorials on how to make IntelliJ IDEA 14 portable, but 14 is outdated now The Version 15 does somehow ignore the idea.properties file in /bin/, and setting %USERPROFILE% to %cd%..\portable does also not work So how to I make this installation portable? 回答1: Got it! Adding -Duser.home=../../../portable/ To the idea(64).exe.vmoptions makes it use the folder portable next to the bin folder 来源: https://stackoverflow.com/questions/35536638/make-intellij-idea-15-portable