Willismorse
- 活动总数 85
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 31
-
创建于 Does Junie use Jetbrains IDEs internal codebase knowledge (ie: PSI)?
I notice that when I use Junie to make project-wide analyses or changes, it performs a bunch of command line discovery calls such as ls and cat. I assumed that one of Junie's advantages would be th... -
创建于 Automatically annotate types for automatically created methods and parameters
已回答I am using Python3 and type annotations in all of my code. Using the quickfix (alt-enter) on undefined methods and parameters will create the appropriate method or parameter, but PyCharm will not a... -
创建于 NSInteger vs in 64bit
Given the following code: NSInteger nsInt = 1; int index = nsInt; When building for 64bit, Xcode complains correctly about a loss of precision between NSInteger and int, at the second line. ... -
创建于 Is there a way to see raw results for Evaluate XPath?
I am trying to extract text from xml/html, using xpaths like this: //div[@]/text()I would expect to get a simple list of strings, but instead I get results like:(90: 58) <div id="territory_sale... -
创建于 Autocompletion getting in the way when creating new local variables?
Here's the scenario:Start typing a new undeclared variable name, such as "label"Immediately, autocompletion pops up, with "msg_labels_t" preselected.If you then type "=", appcode changes "label" to...