Pablo García Chacón

- Total activity 155
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 6
- Subscriptions 50
-
Pablo García Chacón created a post, Is it possible to set up the debugger to stop when a condition is met at any point of the execution?
I am not asking about a conditional breakpoint at a given line. But let's say I have the variable x which holds an int value. This value should never be negative, but because of a bug this is happe... -
Pablo García Chacón commented, -
Pablo García Chacón created a post, I don't understand how Javascript debugging is done
I am reading the docs https://www.jetbrains.com/help/idea/configuring-javascript-debugger.html but I am just not understanding what I am supposed to do. I have the Professional version, using Chrom... -
Pablo García Chacón commented, -
Pablo García Chacón commented, -
Pablo García Chacón created a post, AnsweredIncorrect "unresolved attribute reference" in dict
If I define the following block: d = { 'prop1': defaultdict(int), 'prop2': defaultdict(list)}d['prop2']['entry1'].append(1) I am getting "Unresolved attribute reference 'append' for class 'in... -
Pablo García Chacón commented, -
Pablo García Chacón created a post, AnsweredCustomize syntax highlighting based on value
I would like to custome syntax highlighting for Django/Jinja2 Template so that "include" tag names are colored differently. Is that possible? -
Pablo García Chacón commented, -
Pablo García Chacón created a post, AnsweredInsert pair '}' in string?
Is there any option to automatically insert '}' when '{' is typed in a string? Very handy when using string.format which is what is probably expected when using '{' in a string.