• Opening Unix style file paths

    2
    1 Votes
    2 Posts
    1k Views
    Scott SumnerS

    @mkupper

    Not sure about all of the info you provided but…

    What is your setting for this redboxed option…there may be a clue in the blue underlining…? :

    Imgur

  • 1 Votes
    1 Posts
    1k Views
    No one has replied
  • Resets to top of document when I change tabs within N++

    9
    0 Votes
    9 Posts
    2k Views
    Brigham NarinsB

    I’ve noticed the same problem as Loren describes, except for me the position is not set all the way back to the top of the file, it’s set only a few lines up from the cursor position. The cursor will be off screen (below). The left/right key workaround works, but it’s not really what we want.

    I should note that this is a recent issue, I haven’t noticed it in previous versions. Let’s hope it’s easy enough to fix. Thanks!

  • 0 Votes
    1 Posts
    567 Views
    No one has replied
  • The number of digits after the point in the code that is in Notoped++

    Locked
    8
    0 Votes
    8 Posts
    2k Views
    rita252525R

    Thank you. It works.

  • Remove one character before a character

    Locked
    4
    0 Votes
    4 Posts
    2k Views
    mkupperM

    If you had Test | Word and replaced the | with a space then you would have three spaces, not two.

    If your list uses | as a separator and that sometimes there are one or more spaces before and/or after the | then use regular expression mode.
    Search for: \x20*\|\x20*
    Replace with: \x20

    The first \x20* looks for zero or more leading spaces. I used \x20 rather than a space self as it’s easier to see on the screen. \| looks for the |. In regular expression mode a | is special and so use \| to search for a | itself. The second \x20* looks for zero or more trailing spaces.

    If your data has either one or zero spaces before and after the | and never had two or more spaces before/after the | then you can use
    Search for: \x20?\|\x20?
    Replace with: \x20

  • CTRL-L overwrites Clipboard

    2
    1 Votes
    2 Posts
    1k Views
    guy038G

    Hello, andreas-petersen,

    No, andreas, it’s not a bug ! Indeed, there are some specific Scintilla commands which involve lines :

    SCISELECTIONDUPLICATE : Copy current selection or current line, under the cursor location ( Ctrl + D )

    SCILINEDELETE : Delete current line, without copying its contents in the clipboard ( Ctrl + Shift + L )

    SCILINECUT : Cut current line and copy its contents in the clipboard ( Crtl + L )

    SCILINECOPY : Copy current line in the clipboard ( Ctrl + Shift + X )

    SCILINETRANSPOSE : Swap the current line with the line just above ( Ctrl + T )

    And also :

    Notepad Command : Move Up Current Line ( Ctrl + Shift + Up )

    Notepad Command : Move Down Current Line ( Ctrl + Shift + Down )

    Of course, with the Shortcut Mapper, you can customize your own shortcuts for these commands ! Just choose the Scintilla tab ;-))

    Best Regards,

    guy038

  • Strange behavior in Find dialog

    Locked
    4
    0 Votes
    4 Posts
    971 Views
    YaronY

    I’m glad it’s working as expected now.
    You may have accidentally pressed a keyboard-shortcut which changed the text direction.

  • 0 Votes
    3 Posts
    2k Views
    Jason CarswellJ

    Also, using Fountain markup would be good to work on with a “code/compose” and “preview” panels, easily done side by side, like this forum, or like Wikimedia editing.

  • Launching index.php in a browser

    Locked
    1
    0 Votes
    1 Posts
    606 Views
    No one has replied
  • 0 Votes
    1 Posts
    594 Views
    No one has replied
  • How execute macro in all files open?

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Scott SumnerS

    @Jose-Victor-Mirandola-da-Silva

    Hmmm, not sure you can, without some help…

    For example, you could script something with the Pythonscript plugin that would loop over all open XML files and execute this:

    Notepad.runMenuCommand('Macro', 'your macro name here')

    Probably more effort than you wanted to go to…

    Maybe there’s a way with the NppExec plugin? Experts on that plugin please chime in if so…

  • How do I leave the colored letters?

    Locked
    2
    0 Votes
    2 Posts
    674 Views
    Thiago VitorT

    I found the mistake!

  • Easy task but driving me crazy

    Locked
    7
    0 Votes
    7 Posts
    2k Views
    Scott SumnerS

    And BTW I believe it is pronounced “Tim-Toady”

    :-)
  • Extrem long loading time of big text-files?

    10
    0 Votes
    10 Posts
    6k Views
    Tim NanosT

    Just as Harald-Napp said, I have some troubles opening files with very long strings.
    I have a file ~60MB with a single string and it takes several minutes to open it, while Lister or even Windows Notepad just takes several seconds.
    It would be really great if you guys manage to improve the performance of opening such files.
    Thanks!

  • Displaying ASCII ?

    Locked
    4
    0 Votes
    4 Posts
    1k Views
    Scott SumnerS

    @Scott-Sumner said:

    In what ASCII scheme is a “space” equal to “55”?

    Maybe the “55” was supposed to be a “SS”…short for “Single-Space”?

    :-D
  • Plugins for v7.5.6?

    Locked
    2
    0 Votes
    2 Posts
    723 Views
  • Only syntax highlight after period

    Locked
    4
    0 Votes
    4 Posts
    1k Views
    Jim DaileyJ

    @pieterjanvc
    Last thing I can think of that may (but probably will not) work for you is to define a Delimiter style having:

    Open: . Escape: Close: ((EOL))

    This will highlight every period to the end of the line.

  • Autocomplete question

    Locked
    2
    0 Votes
    2 Posts
    603 Views
    Scott SumnerS

    @The-V8

    It is going to depend upon your From _ th character setting in the Auto-Completion preferences, but the general technique would be to backspace off your errant ppy and then start typing opy until auto completion again kicks in and pops up the box.

  • Help Parsing Datafile and removing unwanted strings

    Locked
    6
    0 Votes
    6 Posts
    1k Views
    guy038G

    Hello, @frederick-dalmeida,

    Probably, your regex should have that form !

    (?-is)^\x{FE}.*?\xFE\x14\xFE\K.+\\(.+?)\\(?=(?:Root - |Top of |EAD2EF20-))|^\x{FE}RecordID\xFE\x14\xFE\K(Full)(?=Path\xFE$)

    or may be, if we care about possible indentations :

    (?-is)^\h*\x{FE}.*?\xFE\x14\xFE\K.+\\(.+?)\\(?=(?:Root - |Top of |EAD2EF20-))|^\x{FE}RecordID\xFE\x14\xFE\K(Full)(?=Path\xFE$)

    For documentation about regular expressions, see here

    As you managed to adapt my regex to your needs, I suppose that you correctly understood its syntax :-) But I don’t mind giving you additional information, if necessary !

    Best Regards,

    guy038