Jeffrey Riaboy
- 活动总数 36
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 2
- 订阅数 11
-
创建于 Problem with printf and an sql query
已回答I 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... -
已编辑于 Not getting expected signatures with phpstan
已回答PHPStan 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... -
创建于 Previous version default font
已回答Does 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... -
创建于 Inspection popup shortcut key
已回答Is there a shortcut key to open the inspection popup? The one you get when mousing over an error. -
创建于 Unable to block excluded folders from custom search scope
已回答I 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... -
创建于 "Code Fragment" button missing
已回答I'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... -
创建于 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... -
创建于 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... -
已编辑于 Debugger stepping over control statements when there are no braces
已回答1) 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) ... -
创建于 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...