jetbrains-ide

Can IntelliJ IDEA encapsulate all of the functionality of WebStorm and PHPStorm through plugins?

两盒软妹~` 提交于 2019-12-27 12:11:11
问题 I am in the market for a new IDE but am confused about the overlap between some of Jetbrains' offerings. It looks like IntelliJ IDEA has plugins that allow you to do Node.js and php development. Can IntelliJ IDEA do everything that WebStorm and PHPStorm do through plugins or do they have special features not available in IDEA? I am hoping to have a single polyglot IDE for all development. 回答1: All of the functionality of our lightweight IDEs can be found within IntelliJ IDEA (you need to

Can IntelliJ IDEA encapsulate all of the functionality of WebStorm and PHPStorm through plugins?

这一生的挚爱 提交于 2019-12-27 12:10:15
问题 I am in the market for a new IDE but am confused about the overlap between some of Jetbrains' offerings. It looks like IntelliJ IDEA has plugins that allow you to do Node.js and php development. Can IntelliJ IDEA do everything that WebStorm and PHPStorm do through plugins or do they have special features not available in IDEA? I am hoping to have a single polyglot IDE for all development. 回答1: All of the functionality of our lightweight IDEs can be found within IntelliJ IDEA (you need to

PhpStorm - Wrong icon for language

瘦欲@ 提交于 2019-12-26 10:36:45
问题 I just updated my PhpStorm to the latest version (2017.1.2) but when I open my current project (Laravel) I saw wrong icon in each file for PHP, the icon is C like in this picture: But when I see for another directory, the icon is correct: How to change the Icon to correct icon? Is it just an icon or also change the programming language to C? 回答1: The C is just indicating the file is entirely made up of a class matching the name of the file. This is a recent addition to PhpStorm. This icon has

How to enable intellisense in package.json

末鹿安然 提交于 2019-12-25 18:41:09
问题 In this video is shown how WebStorm provides intellisense support in package.json . I tried the same but it doesn't work for my version. How do I enable it? My version is: WebStorm 2016.3.3 Build #WS-163.12024.17, built on January 31, 2017 Licensed to Maximus Koretskyi You have a perpetual fallback license for this version Subscription is active until October 16, 2018 JRE: 1.8.0_73-b02 amd64 JVM: Java HotSpot(TM) 64-Bit Server VM by Oracle Corporation 回答1: For that you need to use WebStorm

JetBrains WebStorm debugger doesn't work since upgrading for 7.0.1 and 7.0.2

江枫思渺然 提交于 2019-12-25 01:44:56
问题 An angular project with this structure: project name: --/app folder --/app/index.html In directories/settings I set the project name as content source, and app folder as resource folder. The URL is set as: http://localhost:63342/app/index.html . I have the chrome plugin installed but when I run the debugger I see "404 page not found" message. If I set the url to http://localhost:63342/angular/index.html (with selecting the index.html file) I do get the page but without any resource, with this

How do I disable html closing tag completion?

纵饮孤独 提交于 2019-12-24 11:40:55
问题 In phpstorm whenever I type </ it automatically closes what it thinks is the appropriate tag to close but I'd like to turn this off, but I cannot find the setting to do this. Does anyone know what setting this is? 回答1: Settings | Editor | Smart Keys | Automatically insert closing tag P.S. Settings screen has very handy search box which will narrow possible settings a lot . 来源: https://stackoverflow.com/questions/22486549/how-do-i-disable-html-closing-tag-completion

Butterknife @generate not working{Error:(23, 6) error: cannot find symbol class Bind}

荒凉一梦 提交于 2019-12-24 09:26:29
问题 build.grable(root)app apply plugin: 'com.android.library' android { compileSdkVersion 25 buildToolsVersion '25.0.0' defaultConfig { minSdkVersion 18 targetSdkVersion 23 multiDexEnabled true versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } productFlavors { } dexOptions { incremental true javaMaxHeapSize '2g

AngularJS: Method expression is not of Function type

馋奶兔 提交于 2019-12-23 23:06:27
问题 Having a class defined as: angular.module('trip') /** @class MyClass */ .factory('MyClass', [Factory]); function Factory() { return function(){ // fields & functions } } Then in the code I would instantiate a new object: /** * @param {MyClass} MyClass */ function(MyClass){ var myClass = new MyClass(); // HERE MyClass is highlighted in phpStorm } When calling new MyClass(); the MyClass is highlighted in phpStorm and I get this warning: Method expression is not of Function type What does it

Refactoring inside scope in JetBrains IDE

我的未来我决定 提交于 2019-12-22 14:54:40
问题 I would like to refactor a variable inside a function, but only inside that function. Is this possible in the JetBrains IDE's? Example: var global = 0; function func1 (val) { if (val === global) { doSomething(); } else if (val * 2 === global) { doSomethingElse(); } else { doSomethingElseEntirely(); } } function func2 (val) { if (val === global) { doSomething(); } else if (val * 2 === global) { doSomethingElse(); } else { doSomethingElseEntirely(); } } If I try to change the variable global

JetBrains Rider C# | Windows Form UI [closed]

泄露秘密 提交于 2019-12-22 06:10:14
问题 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 2 years ago . I've developed a console application using Rider IDE by JetBrains. What I wanted to know is if there's a way of build an UI using Rider IDE? Or a plugin which creates the basic setup for an app with UI? 回答1: Q: Are you also developing a GUI designer like in Visual Studio for WinForms, WPF etc? A: Yes, we’re