Jeffrey Riaboy
- Total activity 34
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 10
-
Created Problem with printf and an sql query
AnsweredI have the following line: sqlQuery := fmt.Sprintf("SELECT * FROM `%s` WHERE %s", s.Name, whereClause)Intellij highlights the first %s as an inspection error, but I can fix it with: //goland:noinsp... -
Edited Not getting expected signatures with phpstan
AnsweredPHPStan is not giving me callable signatures like I would expect. I would expect it to give me the full signature, but it only gives me “callable|null”. Any ideas why this may be? I have install... -
Created Previous version default font
AnsweredDoes anyone know what the default font options were in previous versions? I just updated to 2020.1 and the JetBrains Mono is giving me a headache. Consolas kind of feels right... -
Created Inspection popup shortcut key
AnsweredIs there a shortcut key to open the inspection popup? The one you get when mousing over an error. -
Created Unable to block excluded folders from custom search scope
AnsweredI loaded a php symfony projected as a new project into IntelliJ and it automatically added most everything in vendor/* as Excluded in the Project Settings > Modules section. When searching, if I se... -
Created "Code Fragment" button missing
AnsweredI'm running the latest version of IntelliJ IDEA.Ultimate I can't seem to find the "code fragment" button in the "evaluate expression" window in any of the 3 themes. Image attached. Any ideas? Intel... -
Created Javascript library load order problems
I'm working on a javascript web project that includes no extra libraries or frameworks but jQuery. I created a project as "Static Web". In "Settings > Languages & Frameworks > JavaScript > Librarie... -
Created Editing arrays in variables window
Am I just crazy, or is there no way to edit an array in the variables window during debugging? It won't let me press f2 to change it to a scalar or null or whatnot. Was also gonna ask about the fac... -
Edited Debugger stepping over control statements when there are no braces
Answered1) If(true)2) $a=1;3) $a=2; When stepping through the programming (over, into, force over, etc) the debugger jumps from line 1 to 3. If I change it to the following 1) If(true) {2) $a=1;3) }4) ... -
Created Local variables not added to watch window when created dynamicall
Hi, So I have the following in a function: extract(Array("a"=>1)); I would expect the variable $a to then show up in the watch window, but it does not. I added: /** @var $a string */ but th...