如何选择数千行

San*_*dra 7 notepad++

我有一个 200,000 行的文本文件。在删除之前如何选择多行?

手动工作对于 65,000 行来说太难了。

小智 8

最简单的方法:

Ctrl+ G,转到第 1 行

    Menu > Edit > Begin/End select.
Run Code Online (Sandbox Code Playgroud)

Ctrl+ G,转到第 65.000 行。

    Menu > Edit > Begin/End select.
Run Code Online (Sandbox Code Playgroud)

您现在已经选择了您的范围。


回答:

/sf/ask/594367791/


The*_*ell 1

对于数千行/页来说,shift+组合非常慢;some direction control所以这是一个快速的解决方案......

# 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()
Run Code Online (Sandbox Code Playgroud)