回答:
私はより良い答えを得ました。マクロを記録できます(たとえば、10行を削除します)。その後、それを数回実行します。   
1)に行く Macro > Start recording  
2)を押し続けてShift、Down例の10線をマークします。そしてそれらを削除します。  
3)に行く Macro > Stop Recording  
マクロが記録されました。今後使用するために保存できます。
4)に移動しMacro > Save Current Recording Macro...ます。そして、名前を付けて保存します。  
5)その後、行を削除したい行にカーソルを移動しますMacro > Run A Macro Multiple Times...。マクロを選択してN、必要な回数実行します。
私はこの同様の質問でこれで応答しましたが、ここではより適切な答えのように見えます。この質問のタイトルがより多くのヒットを得ると思います...なので、私はここに投稿してそれが期待していますある種の偽物...(おそらく、それは他のものへのリンクにすぎないのでしょうか?)
# File:: selectGOTO.py
#   A N++ Python Script to enhance line selection speed compared to mouse, cursor, page controls.
#   Selects text from the [ start|end ] of current line to [ end|start ] of GOTO line.
# Install using:: Plugins -> Plugin Manager -> Python Script
# Create script using:: Plugins -> Python Script -> New Script -> "selectGoto.py"
# Add to menu:: Plugins -> Python Script -> Configuration -> [select script] [ add ]
# Create shortcut:: [Restart N++]
#   Settings -> Shortcut Mapper -> Plugin Commands -> selectGOTO -> [modify] [ctrl]+[shift]+[g]
# Simple usage:
#   [ctrl]+[shift]+[g] line#
#   Do your operation... (ie: del)
from Npp import *
class startAnchor:
    pos = 0
def selectGOTO( args ):
    endPos = editor.getCurrentPos()
    if( endPos > startAnchor.pos ):
        startAnchor.pos = editor.positionFromLine( editor.lineFromPosition( startAnchor.pos ) )
    else:
        tmp = startAnchor.pos
        startAnchor.pos = endPos
        endPos = tmp
    endPos = editor.getLineEndPosition( editor.lineFromPosition( endPos ) )
    editor.setSel( startAnchor.pos, endPos )
    editor.clearCallbacks()
def main():
    startAnchor.pos = editor.getCurrentPos()
    editor.callback( selectGOTO, [SCINTILLANOTIFICATION.UPDATEUI] )
    notepad.menuCommand( MENUCOMMAND.SEARCH_GOTOLINE )
main()