From 41b25091e71adb995d7a9b329964affe56f20dfa Mon Sep 17 00:00:00 2001 From: Egor Ushakov Date: Mon, 19 Nov 2018 13:19:21 +0300 Subject: [PATCH] IDEA-186962 Allow user defined Async annotations - help id --- .../com/intellij/debugger/settings/CaptureConfigurable.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/java/debugger/impl/src/com/intellij/debugger/settings/CaptureConfigurable.java b/java/debugger/impl/src/com/intellij/debugger/settings/CaptureConfigurable.java index 1ab909804a52..6f1112cf686c 100644 --- a/java/debugger/impl/src/com/intellij/debugger/settings/CaptureConfigurable.java +++ b/java/debugger/impl/src/com/intellij/debugger/settings/CaptureConfigurable.java @@ -604,5 +604,11 @@ public class CaptureConfigurable implements SearchableConfigurable { .toArray(ArrayUtil.EMPTY_STRING_ARRAY); super.doOKAction(); } + + @Nullable + @Override + protected String getHelpId() { + return "reference.idesettings.debugger.customAsyncAnnotations"; + } } }