1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2026-06-14 17:02:31 +02:00

Compare commits

..

26 Commits

Author SHA1 Message Date
898f37796e Set plugin version to chylex-53 2026-03-29 07:13:29 +02:00
69abc60e9a Preserve visual mode after executing IDE action 2026-03-29 07:13:29 +02:00
6aca28e8b2 Make g0/g^/g$ work with soft wraps 2026-03-29 07:13:29 +02:00
5fe6f44515 Make gj/gk jump over soft wraps 2026-03-29 07:13:29 +02:00
8ef7a16a80 Make camelCase motions adjust based on direction of visual selection 2026-03-29 07:13:29 +02:00
aec753ba5d Make search highlights temporary 2026-03-29 07:13:28 +02:00
c261b7e74d Exit insert mode after refactoring 2026-03-29 07:13:28 +02:00
01027e2f7c Add action to run last macro in all opened files 2026-03-29 07:13:28 +02:00
0fec45bce7 Stop macro execution after a failed search 2026-03-29 07:13:28 +02:00
43e962515e Revert per-caret registers 2026-03-29 07:13:28 +02:00
10e43fe8f9 Apply scrolloff after executing native IDEA actions 2026-03-29 07:13:28 +02:00
13e5af970b Automatically add unambiguous imports after running a macro 2026-03-29 07:13:28 +02:00
92954b913d Fix(VIM-3986): Exception when pasting register contents containing new line 2026-03-29 07:13:28 +02:00
9da511dfe8 Fix(VIM-3179): Respect virtual space below editor (imperfectly) 2026-03-29 07:13:28 +02:00
fbe9d1c6ef Fix(VIM-3178): Workaround to support "Jump to Source" action mapping 2026-03-29 07:13:28 +02:00
aee84e2700 Update search register when using f/t 2026-03-29 07:13:28 +02:00
ad9d493fc7 Add support for count for visual and line motion surround 2026-03-29 07:13:28 +02:00
484b135e83 Fix vim-surround not working with multiple cursors
Fixes multiple cursors with vim-surround commands `cs, ds, S` (but not `ys`).
2026-03-29 07:13:28 +02:00
0d284d443d Fix(VIM-696): Restore visual mode after undo/redo, and disable incompatible actions 2026-03-29 07:13:27 +02:00
22aeb5b963 Respect count with <Action> mappings 2026-03-29 07:13:27 +02:00
83f883e874 Change matchit plugin to use HTML patterns in unrecognized files 2026-03-29 07:13:27 +02:00
791ea56407 Fix ex command panel causing Undock tool window to hide 2026-03-29 07:13:27 +02:00
0a09c1e1c3 Reset insert mode when switching active editor 2026-03-29 07:13:27 +02:00
8a793d6cac Remove notifications about configuration options 2026-03-29 07:13:27 +02:00
00d3315a4e Remove AI 2026-03-29 07:13:27 +02:00
c2826e4a11 Set custom plugin version 2026-03-29 07:13:27 +02:00
4 changed files with 7 additions and 2 deletions

View File

@@ -112,7 +112,7 @@ dependencies {
testFramework(TestFrameworkType.Platform)
testFramework(TestFrameworkType.JUnit5)
plugin("com.intellij.classic.ui", "251.23774.318")
plugin("com.intellij.classic.ui", "261.22158.185")
pluginModule(runtimeOnly(project(":modules:ideavim-common")))
pluginModule(runtimeOnly(project(":modules:ideavim-frontend")))

View File

@@ -16,7 +16,7 @@
# https://data.services.jetbrains.com/products?code=IU
# Maven releases are here: https://www.jetbrains.com/intellij-repository/releases
# And snapshots: https://www.jetbrains.com/intellij-repository/snapshots
ideaVersion=2025.3
ideaVersion=2026.1
# Values for type: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#intellij-extension-type
ideaType=IU
instrumentPluginCode=true

View File

@@ -12,6 +12,7 @@ import com.intellij.ide.ui.LafManagerListener
import com.intellij.openapi.application.ApplicationManager
import com.intellij.openapi.editor.Editor
import com.intellij.openapi.wm.impl.IdeBackgroundUtil
import com.intellij.openapi.wm.impl.ToolWindowManagerImpl
import com.intellij.ui.ClientProperty
import com.intellij.ui.JBColor
import com.intellij.ui.components.JBPanel
@@ -90,6 +91,7 @@ class OutputPanel private constructor(
// Suppress the fancy frame background used in the Islands theme
ClientProperty.putRecursive(this, IdeBackgroundUtil.NO_BACKGROUND, true)
putClientProperty(ToolWindowManagerImpl.PARENT_COMPONENT, editor.component)
// Initialize panel
setLayout(BorderLayout(0, 0))

View File

@@ -15,6 +15,7 @@ import com.intellij.openapi.diagnostic.Logger
import com.intellij.openapi.editor.Editor
import com.intellij.openapi.editor.colors.EditorColors
import com.intellij.openapi.wm.IdeFocusManager
import com.intellij.openapi.wm.impl.ToolWindowManagerImpl
import com.intellij.ui.DocumentAdapter
import com.intellij.util.IJSwingUtilities
import com.maddyhome.idea.vim.EventFacade
@@ -144,6 +145,7 @@ class ExEntryPanel private constructor() : JPanel(), VimCommandLine {
glassPane.addComponentListener(resizePanelListener)
positionPanel()
glassPane.isVisible = true
putClientProperty(ToolWindowManagerImpl.PARENT_COMPONENT, parent)
entry.requestFocusInWindow()
}
this.isActive = true
@@ -191,6 +193,7 @@ class ExEntryPanel private constructor() : JPanel(), VimCommandLine {
requestFocus(parent!!)
}
putClientProperty(ToolWindowManagerImpl.PARENT_COMPONENT, null)
oldGlass!!.removeComponentListener(resizePanelListener)
oldGlass!!.isVisible = false
oldGlass!!.remove(this)