【问题标题】:can't paste what I copied line by line with ideaVim line by line不能用ideaVim逐行粘贴我复制的内容
【发布时间】:2020-04-03 12:37:33
【问题描述】:

复制前

public static void main(String[] args) {

    String fruits1 = "appleCake";
    String fruits2 = "bananaCream";
    String fruits3 = "orangeSoda";

    System.out.println("appleCake = " + );
    System.out.println("bananaCream = " + );
    System.out.println("orangeSoda = " + );

}

我想使用多光标在每一行插入一个变量

复制后

public static void main(String[] args) {

    String fruits1 = "appleCake";
    String fruits2 = "bananaCream";
    String fruits3 = "orangeSoda";

    System.out.println("appleCake = " + fruits1);
    System.out.println("bananaCream = " + fruits2);
    System.out.println("orangeSoda = " + fruits3);

}

使用 IntelliJ 功能

使用ideaVim功能

我应该如何设置ideaVim 设置以执行与IntelliJ 函数相同的行为?

【问题讨论】:

    标签: intellij-idea intellij-plugin ideavim


    【解决方案1】:

    很遗憾,这是 IdeaVim 的一种行为。您可以使用tracker 提出问题。

    【讨论】:

    • 明白了。报告了一个问题。谢谢你。 VIM-1869
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-05-13
    • 1970-01-01
    • 1970-01-01
    • 2020-03-30
    相关资源
    最近更新 更多