Lingvisa

- Total activity 135
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 49
-
Created Is there a quick way to access the Default Changelist under 'Local Changes'?
After I changed my file and want to submit those changes, It usually takes me a few steps to do the submission: Click the project root->local Changes ->Default Changelist Is there a quicker way to ... -
Edited False syntax error alarm in red highlight in code editor
Answered/** {@link #restoreInvariant()} and {@link #setDeterministic(boolean)} methods */ The above is a Java comment, and the two hash strings are highlighted in red, indicating an error: #restoreInvari... -
Created What's the best way to review colleague's code in PyCharm?
For example, if I do: git log I can see the message: commit aec1df32fd6858af03b04a9ebf0e7b95e8c31148Author: WEI <weili46@xxx.com>Date: Mon Sep 23 03:20:01 2019 -0700 music macros and generalization... -
Created Why are some files are not ignored?
Some times even if I added a directory to the .gitignore file, in "local changes" view, it still displays it and are not ignored. For example, I added 'dialog.egg-info' as a directory name into it... -
Created Why is PyCharm keep "updating Python interpreter"?
AnsweredI am on Mac, and it shows this message forever. I tried remove cache/Pycharm and preferences/Pycharm, but it doesn't help. -
Edited Why is debugging so slow?
Sometimes debugging speed seems normal, meaning that even if it is slow, it's not that slow. But sometimes it is extremely slow, even the break point is set at the very beginning of the code. The c... -
Created How can I close the "Find in Path" window?
AnsweredAfter I performed a search in "Find in Path" window, this window doesn't close, and there is no button that allows me to close it. How can I close it? Annoying! -
Created In debugging mode, source code doesn't update with the debugging point
AnsweredMy Pycharm's debugger has been working fine. But today it suddenly got a problem. When I started the debugging in one file and traced the execution logic into another source file, the current sourc... -
Created How to let PyCharm automatically find and import dependency?
For example, if I am writing: Agent.run("start") Where 'Agent' has not been imported yet, currently I have to remember where Agent is from and then manually import it. Is it possible that PyCha... -
Created Dependencies exist but Pycharm shows unresolved reference
For example: from cymem.cymem cimport Pool The cymen has actually been installed the environment in which this project is running. Why does PyCharm still display an error?