This project is mirrored from https://gitee.com/mirrors/intellij-community.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Last successful update .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Last successful update .
- 19 Nov, 2018 40 commits
-
-
Alexander Doroshko authored
-
Shaverdova Elena authored
-
Anna.Kozlova authored
-
Svetlana.Zemlyanskaya authored
-
peter authored
reset action text only if it's non-null: it'll overwrite the default suggestion which is too generics if there are several applicable run configurations
-
Egor Ushakov authored
IDEA-202380 Can't assign non-array value to an array in Expression Evaluation window - better fix, not for 183
-
Dmitry Jemerov authored
-
Sergey Ignatov authored
-
Alexander Lobas authored
-
Alexander Koshevoy authored
PY-24191 Skip sending superfluous messages from debugger to IDE about substituting current process with non-Python ones
-
Alexander Koshevoy authored
-
Alexander Koshevoy authored
PY-24191 Use explicit integer values for CommunicationRole constants, move CommunicationRole to pydevd_comm.py
-
Alexander Koshevoy authored
-
Alexander Koshevoy authored
Python documentation states about `os.exec*()` functions: "These functions all execute a new program, replacing the current process." This also applies for `subprocess.Popen()` in Python 2.x because it initially uses `os.fork()` and then `os.exec*()` function call for the child process. Previously we put `CMD_PROCESS_CREATED` message in the queue and performed the original `os.exec*()` function call immediately. In the most cases Python debugger did not have enough time to process `CMD_PROCESS_CREATED` message from the queue and it has not being sent to the IDE. Now when `PyDB` works in server mode we also wait for the response from the IDE after sending `CMD_PROCESS_CREATED` message to be sure that the IDE received it. Waiting for the response in server mode is required because the current process might become substituted before it actually sends the message and IDE will not try to connect to `PyDB` in this case. Waiting of the response in client mode is not required because the substituted process will try to connect to the IDE itself.
-
Egor Ushakov authored
-
Egor Ushakov authored
-
Konstantin Kolosovsky authored
-
peter authored
"origin.update" can enable the action back and set text, but then setting text to null again results in an ugly tiny popup
-
Dennis Ushakov authored
-
Roland Illig authored
If the regular expression does not match the current sample text, but a longer input might match, display a hint to the user. This is helpful in deciding whether the regular expression is completely wrong or the sample text is just unfinished.
-
Anna.Kozlova authored
-
Anna.Kozlova authored
-
Anna.Kozlova authored
-
Anna.Kozlova authored
-
Dmitriy.Panov authored
-
Dmitriy.Panov authored
-
Alex Plate authored
Review Id: IDEA-CR-40066
-
peter authored
to avoid showing two actions with similar meanings on the same toolbar, and be able to remove the last used Perforce icon
-
Yann Cébron authored
-
Sergey Malenkov authored
-
Alex Plate authored
Fix wrong if condition and border case for compareText (when text in document ends with one of `skip chars`. E.g. "class ")
-
Maxim.Kolmakov authored
-
Pavel Dolgov authored
Java: Extend control flow analysis to support enhanced switch & switch expression. No break-with-value yet (IDEA-202131)
-
Alexander Koshevoy authored
-
Aleksey Pivovarov authored
-
Dmitry Batkovich authored
-
Aleksey Pivovarov authored
Lightweight hints are closed by `myEscListener` keyboard action on `myComponent`. Heavyweight hints handle this event separately (and ignore it if `setCancelKeyEnabled` is `false`).
-
Aleksey Pivovarov authored
-
Dmitry Jemerov authored
Rider uses highlighters to manage all editor data including inlays, so it needs a possibility to create a highlighter that behaves exactly like an inlay associated with following text.
-
Roman Shevchenko authored
-