Bob Jones
- Total activity 121
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 37
- Subscriptions 25
-
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... -
Created DataGrip allow having AND on the same line as WHERE
AnsweredSimply put, I would like DataGrip to allow both of the following formats when it currently only allows the latter one. How would I do so? (I previously made a request for this unintentionally where... -
Created Allow queries to have columns all on the same line or on different lines
AnsweredBasically, I wish to modify my MySQL code style such that the following two queries would be acceptable: SELECT first_name, last_name, birth_sex FROM owner SELECT first_name, last_name, bi... -
Created How to prevent IntelliJ from changing file formatting if lines meet hard wrap constraints?
AnsweredEssentially, IntelliJ formats my code such that, even if it conforms to the 150 hard wrap limit, it will try to fit as much possible on each line. If this limit has not been exceeded, how can I t... -
Edited How to get relative resource from Python resource roots
AnsweredAccording to https://www.jetbrains.com/help/pycharm/content-root.html, PyCharm resource roots are defined as follows: Resource roots These roots are intended for resource files in your applicatio...