Notepad ++で次の選択を追加(Sublime TextのCtrl + Dなど)


13

オープンソースのNotepad ++で次の機能を使用する方法を探しています。

SublimeTextでCtrl+ D(mac:cmd+ Dと思う)を押すと、これが起こります:

  • 選択がない場合は、カーソル位置が展開されてその単語が選択されます。
  • それ以外の場合、その単語の次の出現も選択されます(検索ポップアップを開く必要はありません)。

その後、複数の単語を選択して変更することができ、実際にこれらの場所のすべてを見ました(全選択ではなく)。

Notepad ++でこれを行う方法はありますか(おそらくAutohotkeyの助けを借りて)?

オプション:で崇高、あなたはまた、これらの各元に戻すことができますCtrl+をDしてのCtrl+ UとしてのoccuranceをスキップCtrl+ K

回答:


2

Notepad ++ Communityページでこのスレッドを見つけました。

https://notepad-plus-plus.org/community/topic/11360/multi-selection-and-multi-edit

彼らはpythonスクリプトプラグインを使用して、次のスクリプトでこの機能を作成しています。

# this script implements the enhanced multi cursor edit functionality

def default_positions():
    return 0, editor.getLength()

def get_pos_of_bookmarks():
    npp_bookmark_marker_id_number = 24
    npp_bookmark_marker_mask = 1 << npp_bookmark_marker_id_number
    _start_position, _end_position = default_positions()

    line_nbr = editor.markerNext(_start_position, npp_bookmark_marker_mask)
    if line_nbr != -1:
        _start_position = editor.positionFromLine(line_nbr)
        line_nbr = editor.markerNext(line_nbr + 1, npp_bookmark_marker_mask)
        if line_nbr != -1:
            _end_position = editor.getLineEndPosition(line_nbr)
    return _start_position, _end_position

def get_pos_of_visible_lines():
    first_visible_line = editor.getFirstVisibleLine()
    _start_position = editor.positionFromLine(first_visible_line)
    lines_visible = editor.linesOnScreen()
    last_visible_line = editor.docLineFromVisible(first_visible_line+lines_visible)
    _end_position = editor.getLineEndPosition(last_visible_line)
    return _start_position, _end_position

def get_pos_of_selections():
    _start_position, _end_position = default_positions()
    if editor.getSelections() == 2:
        _start_position = editor.getSelectionNStart(0)
        _end_position = editor.getSelectionNEnd(1)
    return _start_position, _end_position


area_dict = {'a':default_positions,
             'b':get_pos_of_bookmarks,
             's':get_pos_of_selections,
             'v':get_pos_of_visible_lines}

editor.beginUndoAction()

def Main():
    _text = editor.getTextRange(editor.getSelectionNStart(0), editor.getSelectionNEnd(0))
    if len(_text) != 0:

        _current_position = editor.getCurrentPos()
        _current_line = editor.lineFromPosition(_current_position)
        _current_word_start_pos = editor.getLineSelStartPosition(_current_line)
        _current_word_end_pos = editor.getLineSelEndPosition(_current_line)

        find_flag = 2 # 0=DEFAULT, 2=WHOLEWORD 4=MATCHCASE 6=WHOLEWORD | MATCHCASE
        mode_options = ' 0=replace,  1=before,  2=afterwards\n'
        area_options = ' a=all, b=bookmarks, s=selected, v=visible'
        expected_results = [x+y for x in ['0','1','2'] for y in ['a','b','s','v']]

        result = notepad.prompt(mode_options + area_options, 'Choose the desired option', '0a')
        while result not in expected_results: 
            if result is None:
                return
            result = notepad.prompt(mode_options + area_options, 'Choose the desired option', '0a')

        chosen_mode, chosen_area = result
        area_start_position, area_end_position = area_dict[chosen_area]()

        if chosen_mode == '0': # replace whole string version
            editor.setEmptySelection(_current_position)       
            position_tuple = editor.findText(find_flag, area_start_position, area_end_position, _text)

            while position_tuple is not None:
                if _current_position not in position_tuple:
                    editor.addSelection(*position_tuple)
                position_tuple = editor.findText(find_flag, position_tuple[1], area_end_position, _text)


        elif chosen_mode == '1': # insert before selected string version
            editor.setEmptySelection(_current_word_start_pos)
            position_tuple = editor.findText(find_flag, area_start_position, area_end_position, _text)

            while position_tuple is not None: 
                startpos, endpos = position_tuple
                if startpos != _current_position and endpos != _current_position:
                    editor.addSelection(startpos, startpos)
                else:
                    _current_word_start_pos, _current_word_end_pos = startpos, startpos
                position_tuple = editor.findText(find_flag, endpos, area_end_position, _text)


        elif chosen_mode == '2': # insert after selected string version
            editor.setEmptySelection(_current_word_end_pos)
            position_tuple = editor.findText(find_flag, area_start_position, area_end_position, _text)

            while position_tuple is not None: 
                startpos, endpos = position_tuple
                if startpos != _current_position and endpos != _current_position:
                    editor.addSelection(endpos, endpos)
                else:
                    _current_word_start_pos, _current_word_end_pos = endpos, endpos
                position_tuple = editor.findText(find_flag, endpos, area_end_position, _text)


        # now add the current selection
        editor.addSelection(_current_word_start_pos, _current_word_end_pos)

Main()
editor.endUndoAction()

このスクリプトは非常に奇妙ですが、誰かが複数選択を必要とし、Scintillaのソースコードに飛び込むことを望まない場合、これは進むべき方法です。
polkovnikov.ph

1

F3検索を続けるには、ヒットするだけです。


はい。ただし、実行する前にCtrl + Fを使用する必要があります。それが唯一の欠点であり、最善の回避策だと思います。
ジャック

-1

はい、「次を選択して検索」機能はNotepad ++にあります。

これのキーの組み合わせは次のとおりです。

Ctrl + F3

そして、前の出現を選択することです。

Ctrl+ Shift+F3

[ 検索 ]メニューで確認できます。


答えてくれてありがとう。しかし、それらの単語を複数選択できるように具体的に尋ねました(追加の各選択でctrlをダブルクリックしたように)。例:という単語がありfloat、キーの組み合わせを押すと、2番目の出現がfloat複数選択に追加されます。その後、入力することができますdouble2回出てくる交換する(と変わらず、ファイルの残りの部分を保つ)
ベン

Notepad ++でそのようなものが利用可能かどうかはわかりません。しかし、私はそれに出くわすか、そうする方法を見つけるかどうかをお知らせします。
アヤン

残念ながら、Ctrl + F3は同じ単語をすべて選択するだけですが、すべての単語を同時に編集することはできません。
マヌエルディイオリオ

@ManuelDiIorioの場合は、置換機能を使用する必要があります。その検索の下またはあなただけ押すことができるのCtrl + H.
アヤン

さて、メモ帳++でマルチ編集機能を見つけましたが、気に入っています!
マヌエルディイオリオ
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.