Jeffrey Riaboy

Avatar
  • 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

    Answered
    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...
    • 2 followers
    • 1 comment
    • 0 votes
  • Edited

    Not getting expected signatures with phpstan

    Answered
    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...
    • 2 followers
    • 1 comment
    • 0 votes
  • Created

    Previous version default font

    Answered
    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...
    • 3 followers
    • 2 comments
    • 6 votes
  • Created

    Inspection popup shortcut key

    Answered
    Is there a shortcut key to open the inspection popup? The one you get when mousing over an error.
    • 2 followers
    • 4 comments
    • 0 votes
  • Created

    Unable to block excluded folders from custom search scope

    Answered
    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...
    • 2 followers
    • 1 comment
    • 0 votes
  • Created

    "Code Fragment" button missing

    Answered
    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...
    • 3 followers
    • 5 comments
    • 0 votes
  • 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...
    • 2 followers
    • 5 comments
    • 0 votes
  • 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...
    • 2 followers
    • 2 comments
    • 0 votes
  • Edited

    Debugger stepping over control statements when there are no braces

    Answered
    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) ...
    • 2 followers
    • 2 comments
    • 0 votes
  • 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...
    • 2 followers
    • 8 comments
    • 0 votes