Which editors out of Emacs, Vim and JEdit support multiple simultaneous text insertion points?

后端 未结 10 2147
心在旅途
心在旅途 2021-02-12 12:06

Background: JEdit (and some other text editors as well) support a feature called Multiple simultaneous text insertion points. (at least that\'s what I\'m callin

10条回答
  •  野性不改
    2021-02-12 12:56

    It should be something like this in vim:

    %s/paint.\((.*),/\1.paint(/ 
    

    Or something like that, I am really bad at "mock" regular expressions.

    The idea is substitute the pattern:

    /paint(object,/ 
    

    with

    /object.paint(/ 
    

    So, yes, it is "supported"

提交回复
热议问题