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

Remove deprecated function

This commit is contained in:
Alex Plate 2025-01-10 11:52:06 +03:00
parent a7a1c626b6
commit aaba0a09c2
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F
2 changed files with 0 additions and 10 deletions
src/main/java/com/maddyhome/idea/vim/ui/ex
vim-engine/src/main/kotlin/com/maddyhome/idea/vim/api

View File

@ -132,13 +132,6 @@ class ExEntryPanelService : VimCommandLineServiceBase(), VimModalInputService {
return panel
}
@Deprecated("Please use ModalInputService.create()")
override fun createWithoutShortcuts(editor: VimEditor, context: ExecutionContext, label: String, initText: String): VimCommandLine {
val panel = ExEntryPanel.getInstanceWithoutShortcuts()
panel.activate(editor.ij, context.ij, label, initText)
return panel
}
override fun fullReset() {
ExEntryPanel.fullReset()
}

View File

@ -26,8 +26,5 @@ interface VimCommandLineService {
fun createSearchPrompt(editor: VimEditor, context: ExecutionContext, label: String, initialText: String): VimCommandLine
fun createCommandPrompt(editor: VimEditor, context: ExecutionContext, count0: Int, initialText: String): VimCommandLine
@Deprecated("Please use ModalInputService.create()")
fun createWithoutShortcuts(editor: VimEditor, context: ExecutionContext, label: String, initText: String): VimCommandLine
fun fullReset()
}