WoJ
dev in France
- Total activity 65
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 3
- Subscriptions 20
-
Edited How to make a slot name recognized?
I have the warning Unrecognized slot name in a correct piece of my code. This is a Quasar / Vue component (bit this does not matter much for the question I guess) <q-editor (...)> <template v-slo... -
Edited How to disable automatic expansion?
I set up, somewhere in settings, the automatic expansion of HTML tags, and now I have a problem :( When I type the text `hello world`, I get <hello><world></world></hello> This happens only betwe... -
Edited [SOLVED] Compilation very slow, especially for debug
CompletedCompilation in GoLand 2021.1 is very slow in general, but it is really slow when trying to debug. Sometimes it takes a moment, sometimes 10 minutes and I give up. A similar issue was posted in SO: ... -
Edited Why is PyCharm trying to first install a module? (bug or new functionality?)
There is a functionality that seems to have changed between the 2020.x and the 2021.1 version: when I type the name of a method form a module that is not imported, one of the resolutions in 2020.x ... -
Created Is it pocssible to configure the code reformatting?
I heavily use code reformatting to maintain a consistent style. Unfortunately I did not find a way to influence the code style. As an example, I would prefer <div class="q-pa-md"> to be formatted ... -
Created How to start an external tool before *and during* my main program?
Hello I wanted to start an external tool before launching my Python script. I added the tool to the 'External tool' list and configured it to start. It does start. The problem is that the main pro... -
Created how to inform PyCharm that a module is indeed imported?
AnsweredHello,In order to account for exotic modules in a script (exotic = modules that a user may not have) I do not import them straight away but rather use a more friendly approach (see second comment i... -
Created traceback and script output mixed up in debugger console
Hello,When debugging a Python program I often end up with traceback messages being mixed up with actual script outputExample of code: print "1" print doc['html']['body']['div']['div'][2]['div'][1][... -
Created How to track changes for commits?
Hello,I have detailed comments when committing (to Mercurial). I would like to add these comments while coding, and not at the end (when committing). Is there a way to have the commit comments wind... -
Created Hint PyCharm that an object is defined
Hello,I have the following bit of code in Python: sys.path.append(os.path.join(sys.path[0], "..", "..", "getdsip")) try: from getdsip import GetDSIP except: print("ERROR: cannot load GetDSI...