mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2025-05-21 07:34:05 +02:00
Remove deprecated function
This commit is contained in:
parent
a7a1c626b6
commit
aaba0a09c2
src/main/java/com/maddyhome/idea/vim/ui/ex
vim-engine/src/main/kotlin/com/maddyhome/idea/vim/api
@ -132,13 +132,6 @@ class ExEntryPanelService : VimCommandLineServiceBase(), VimModalInputService {
|
|||||||
return panel
|
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() {
|
override fun fullReset() {
|
||||||
ExEntryPanel.fullReset()
|
ExEntryPanel.fullReset()
|
||||||
}
|
}
|
||||||
|
@ -26,8 +26,5 @@ interface VimCommandLineService {
|
|||||||
fun createSearchPrompt(editor: VimEditor, context: ExecutionContext, label: String, initialText: String): VimCommandLine
|
fun createSearchPrompt(editor: VimEditor, context: ExecutionContext, label: String, initialText: String): VimCommandLine
|
||||||
fun createCommandPrompt(editor: VimEditor, context: ExecutionContext, count0: Int, 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()
|
fun fullReset()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user