1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-05-07 13:34:02 +02:00

Add doc comment for inCommandLineModeWithVisual

This commit is contained in:
Matt Ellis 2025-01-22 15:52:22 +01:00 committed by Alex Pláte
parent 308996c4c1
commit 33b34b84b5

View File

@ -26,6 +26,13 @@ val VimEditor.inSelectMode: Boolean
val VimEditor.inCommandLineMode: Boolean
get() = this.mode is Mode.CMD_LINE
/**
* Returns true if the current mode is Command-line and there is a pending Visual selection
*
* Returns false if the current mode isn't Command-line. For example, `v/foo` will return true, as the editor is in
* Command-line mode for the search, but was originally in Visual mode, and will return to Visual when the search is
* completed.
*/
val VimEditor.inCommandLineModeWithVisual: Boolean
get() = (this.mode as? Mode.CMD_LINE)?.isVisualPending == true