Is there to invoke "scroll to the end" button in console

see my screencast,when i use rspec in ruby, idea always auto scroll to the top, if output is too long, i hope "scroll to the end" of output to see what happen(I can't find it in keymap)



Attachment(s):
how-to-implement-scroll-to-the-end-with-openapi.ogv.zip
0

The keyboard shortcut for "Scroll to end" is Ctrl-End ("Move Caret to Text End" in keymap settings).

1

Ctrl+End only move caret in focus editor

I try following code

ToolWindowManager.getInstance(e.getProject()).getToolWindow("Debug").activate(new Runnable() {

    @Override
    public void
run() {
        EditorUtil.scrollToTheEnd(CommonDataKeys.EDITOR.getData(DataManager.getInstance().getDataContextFromFocus().getResult()));
    }
});


see my screencast, i can't invoke "scroll to end" button in console, it's same err in my last post  https://devnet.jetbrains.com/thread/458969?tstart=0



Attachment(s):
can-ivk-scroll-to-the-end-after-activate-console.ogv.zip
0

请先登录再写评论。