Unable to Paste ( IntelliJ Community master build )

Hey all,

I'm running a latest master@HEAD build of IntelliJ Community and the last few days I've noticed the following exceptions whenever I try pasting:

null
java.lang.AbstractMethodError
 at com.intellij.codeInsight.editorActions.CopyHandler.doExecute(CopyHandler.java:91)
 at com.intellij.openapi.editor.actionSystem.EditorActionHandler.execute(EditorActionHandler.java:125)
 at com.intellij.openapi.editor.actionSystem.EditorAction$1.run(EditorAction.java:83)
 at com.intellij.openapi.command.impl.CommandProcessorImpl.executeCommand(CommandProcessorImpl.java:124)
 at com.intellij.openapi.editor.actionSystem.EditorAction.actionPerformed(EditorAction.java:94)
 at com.intellij.openapi.editor.actionSystem.EditorAction.actionPerformed(EditorAction.java:68)
 at com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher$3.performAction(IdeKeyEventDispatcher.java:564)
 at com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.processAction(IdeKeyEventDispatcher.java:611)
 at com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.inInitState(IdeKeyEventDispatcher.java:463)
 at com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.dispatchKeyEvent(IdeKeyEventDispatcher.java:206)
 at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:518)
 at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:360)
 at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:220)
 at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:135)
 at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:123)
 at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:119)
 at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:111)
 at java.awt.EventDispatchThread.run(EventDispatchThread.java:97)


This gets reported as being from an "unknown plugin" so unable to submit it via the error reporter like I normally would.

Anyone else seen this? ( I'm also running Idea under JDK8 as well, but from the stack trace that doesn't look like it should be an issue ).
0

Please try disabling any 3rd party plugins which probably have non-compatible signature of com.intellij.codeInsight.editorActions.CopyPastePostProcessor

0

This is known to happen for Kotlin plugin used with master now.

0

Looks like for me it was the Scala plugin - and awesome to see a commit last night moving from an interface to an abstract class so as to not break the editor!

http://git.jetbrains.org/?p=idea/community.git;a=commitdiff;h=4f7b33bcb0d7cd9a21b7f4ee1990e9373471d062

You guys are fast :)

Mark
Developing with pleasure....on the bleeding edge :)

0

Thanksfor the hint; I hit it on Linux x86_64 with the 138.777 build, and disabling Scala fixed it.

0

请先登录再写评论。