Bob Jones
- 活动总数 121
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 37
- 订阅数 25
-
创建于 How can I position the caret where there would be indentation on empty lines?
已回答Hello! 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 ... -
已编辑于 IntelliJ multiple Javascript named imports not being recognized in Vue file
已回答I 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>... -
创建于 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? -
已编辑于 DataGrip MySQL subquery indent and ending parenthesis placement
已回答I 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... -
已编辑于 CLion indents comments above else if and else statements
已回答Let 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)... -
已编辑于 Code suggestion menu is now white
已回答For 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... -
创建于 Disable code analysis for directory
已回答Simply 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... -
创建于 IntelliJ allow brackets on same line when empty but not when single statement
已回答Simply 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) {... -
创建于 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... -
创建于 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...