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 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
-
Sergey Malenkov authored
-
peter authored
update menu and toolbar actions with timeout, display non-updated actions using their default/previous presentation
-
peter authored
-
peter authored
-
peter authored
it probably was a bearded typo that it wasn't honored
-
peter authored
-
Daniil Ovchinnikov authored
-
Daniil Ovchinnikov authored
-
Alexander Kass authored
-
Egor Ushakov authored
IDEA-202380 Can't assign non-array value to an array in Expression Evaluation window - can use the fix for bridge methods as well IDEA-CR-39995
-
Vladislav.Soroka authored
IDEA-199623 High CPU load by "DisconnectableInputStream source reader" threads when debugging gradle task
-
Anton Makeev authored
reference: CPP-13028 Build system API: OCMockWorkspace moved to the new OCWorkspace API
-