Bob Jones
- Total activity 121
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 37
- Subscriptions 25
-
Created How can I position the caret where there would be indentation on empty lines?
AnsweredHello! Oftentimes, with many editors, including IntelliJ IDEA, it is common to not keep indentation on empty lines, even if it is within a method or other such context in which code is indented.If ... -
Edited IntelliJ multiple Javascript named imports not being recognized in Vue file
AnsweredI am trying to figure out why IntelliJ is stating "Cannot resolve symbol <value>" when doing multiple named imports in a .vue file. Let the project root be <root>. I have a JS file with path <root>... -
Created How to add external JavaScript library to quick documentation?
For example, if I am using a library like PixiJS or howler.js, is there a way to make the quick documentation appear for the corresponding objects in JavaScript files? -
Edited DataGrip MySQL subquery indent and ending parenthesis placement
AnsweredI would like my formatting profile to format a query like this: SELECT fname, lnameFROM studentWHERE EXISTS( SELECT * FROM enroll WHERE enroll.sid = student.sid); However, it formats the q... -
Edited CLion indents comments above else if and else statements
AnsweredLet us say we have the following code in CLion: //Comment about stuff in first condition blockif(condition_one) { //Do stuff}//Comment about stuff in second condition blockelse if(condition_two)... -
Edited Code suggestion menu is now white
AnsweredFor some reason, in the most recent version of IntelliJ IDEA, my code suggestions menu has turned white. (The part to the right of package was manually redacted and is not part of the issue.) Here... -
Created Disable code analysis for directory
AnsweredSimply put, I have a directory in my project for which I would like to disable code analysis. This mainly applies to when I am committing code. I do not wish to have code analysis ever performed on... -
Created IntelliJ allow brackets on same line when empty but not when single statement
AnsweredSimply put, in reference to bracketed statements such as in try/catch, if/else if/else, methods, etc., I would like to allow : try { //Code that may throw an exception}catch(RandomException e) {... -
Created Automatically include AS for aliases
Simply put, is there a way to have the formatter add AS for any aliases for tables? E.g. Before formatting: SELECT a.account_id, CONCAT(i.fname, ' ', i.lname) AS i_name, b.name AS b_nameFROM accoun... -
Created Allow WHERE clause conditions to be on both the same line or a new line of the where
Simply put, I would like the following two cases to be acceptable formats for the WHERE clause: SELECT order_line.order_id, order_line.quantity, pet_toy.idFROM order_line, pet_toyWHERE order_line.t...