• Can't Figure what is wrong in selecting text within the parentheses.

    6
    0 Votes
    6 Posts
    3k Views
    David ChiuD

    Dear Scott and Guy

    Thank you for your help and detailed explanation.
    Scott one works for me as I need "See " in the beginning of the parenthesis.
    I try to modify Guy’s one to work for me but not working it out.

    Thanks will continue to study it.

  • Automatic Reset

    18
    1 Votes
    18 Posts
    14k Views
    Claudia FrankC

    @Gabr-F

    Ok, I think we can agree that developers should strive to be tolerant and users should strive to be polite.

    100%

    Making the perfect world would probably be tantamount to solving the halting problem, though :) .

    :-D Yes, or how about finding a definition of a perfect world to which everyone agrees.

    Cheers
    Claudia

  • Forcing Notepad++ into Little Endian without BOM

    9
    0 Votes
    9 Posts
    8k Views
    Gabr-FG

    @gstavi I prefer not to touch my old files, I’m fond to them and like to leave them as they are :)
    The advises of converting all files from one line ending to another or one encoding to another always looked like heresy to me :)

  • Find-in-files result - cannot navigate to found files

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC

    @Peter-Crimmin

    A shot in the dark.
    Stop npp.
    Rename %APPDATA%\notepad directory
    Restart npp and retest the behavior.
    If it isn’t solved - post the debug-info found under ? menu.

    Cheers
    Claudia

  • 0 Votes
    1 Posts
    2k Views
    No one has replied
  • Notepad++ with Github repositry . help

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Shahroz-Ahmed

    unfortunately your description is a bit to vague to find out what you really want to do so the answer
    couldn’t be vague only.
    Download the git tools and use nppexec plugin to call them.

    Cheers
    Claudia

  • Jump back to relevant section after prompted find/replace overshoots?

    11
    1 Votes
    11 Posts
    4k Views
    Scott SumnerS

    This (PARTIAL lines selection -> Tab -> Shift+Tab -> FULL lines selection) may not be such a great thing after all. After using it in an editing session, and sometimes much later, when doing an unrelated Delete Line operation (via the Delete Line shortcut key, with no selection active), some odd behavior occurs: the wrong line is deleted, I get TWO carets in odd places (I have Multi-Editing enabled)… If I narrow down further what is actually going on, I’ll post here again, but for now: beware of this tip!     : (

  • Want to delete everything like [xxx] including []

    14
    0 Votes
    14 Posts
    10k Views
    Alan KilbornA

    Hello Mr. Guy,

    I think I see what you mean, although at first I didn’t. I was trying to type a literal \ followed by x followed by { … followed by } in the box I type in to make a post on this website. But…that didn’t work correctly in the Preview area.

    Then it dawned on me that if I type my posting in Notepad++ FIRST (using the Character Panel method), then copy and paste it to the website, it works to make wide         open        spaces!

    Thank you for your help.
    AK

  • Function list and AutoIt / AU3 files

    10
    0 Votes
    10 Posts
    7k Views
    MartianM

    @MAPJe71 said:

    @Martian the commentExpr is incorrect.

    FYI PR #2602 - FunctionList Update 2 includes an AutoIt3 parser.

    Thank you MAPJe71
    I meant it to be in the official Notepad ++ installer

  • Change or Modify Keyboard Shortcut, is it an option??

    6
    0 Votes
    6 Posts
    21k Views
    René W.R

    Hat kind of the same Problem - the Keyboard-Settings are not comfortable.

    You can’t just remove a shortcut without scrolling to the top of the list and select “None”. The window or Tablecolumns can’t be resized and the Table is Bigger. You can’t click on the key-combination without hiding the left column:
    https://o68i.imgup.net/menu53e4.png
  • Eliminating duplicate (identical) lines

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    guy038G

    Hello, Ed,

    The suppression of all the duplicate lines, in a pre-sorted file, can be easily obtained with a Search/Replacement, in Regular expression mode !

    Open your file, containing the sorted list of items

    Open the Replace dialog ( CTRL + H )

    In the Search what: field, type (?-s)(^.+\R)\1+

    In the Replace with: field, type \1

    Check the Regular expression radio button

    Click on the Replace All button

    Et voilà !!

    Notes :

    The (?s) in-line modifier ensures you that the special regex dot character will match standard characters, only, even if you, previously, checked the . matches newline option !

    Then, the part ^.+\R matches all the characters ( .+ ) of any non-empty line, between the beginning of line (^ ) and its End of Line character(s) ( \R ), included

    So, the part (^.+\R), enclosed by round brackets, simply stores any complete line contents, as group 1

    Finally the part \1+ tries to match any positive amount of subsequent identical lines, following the previous line

    And if a overall match can be found, all that block of identical lines, is just replaced by the group 1 ( \1 ), that is to say, ONE copy of that block

    Best Regards,

    guy038

  • How to solve Notepad++ "Stopped Working" issue.

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @Yaseen-Ahmed

    I understand that this happens from time to time and this is also the problem,
    because it seems that it isn’t easy to replicate, so it is hard to find out what could have caused it.
    If you found a way to reproduce this issue than report the steps which needs to be done together
    with the data used. Otherwise …

    Cheers
    Claudia

  • 0 Votes
    2 Posts
    1k Views
    MAPJe71M

    This is not a Notepad++ related question. Try a community or a message board related to JavaScript or simply Google for it, there’s tons of information out there.

  • How-to: Mark edited lines

    Locked
    2
    0 Votes
    2 Posts
    4k Views
    Scott SumnerS

    @rthx

    Have a look at the “Location Navigate” plugin, it marks changed lines in orange and changed+saved lines in light green (these are the default colors, can be changed…).

    [BTW, this is a 32-bit plugin with no 64-bit version available that I know of. So you need to be running 32-bit Notepad++ to use it.]

  • Unable to update Notepad++ Plug-in Manager

    Locked
    6
    0 Votes
    6 Posts
    4k Views
    cmeriauxC

    Hello,
    Npp installer packages a old plugin manager. If you were in the latest plugin manager before, you might have a deadlock exception.
    Lots of people complains, but @donho had never answer about upgrading the plugin manager in the package.

    Be careful on the next update

  • notepad++ python

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC

    @שלומי-אבוטבול

    you need to be a bit more descriptive.
    How did you setup python with npp already?
    Which version of python do you use?
    Do you use npp plugins together with python?

    Cheers
    Claudia

  • How can I organize encodings displayed in menu?

    Locked
    5
    0 Votes
    5 Posts
    2k Views
    comodoroC

    @Claudia-Frank

    I thought the same (viewing only), but then there are the exceptions mentioned on the page, that the underlying file is changed under some circumstances.

    I would actually prefer a command that changes only displayed characters only if they cannot be displayed in the new encoding (and marks the file for subsequent saves in a certain way, and marks the file changed), no immediate saving would be needed. And the Convert command would not be needed then (as I could just save the file). And while I am at it, ANSI is not an encoding name - I assume it means system codepage, which can be different from computer to computer.

    I will have a look at the github project and consider asking there.

  • Plugins are not loaded

    Locked
    5
    0 Votes
    5 Posts
    6k Views
    chcgC

    See https://github.com/bruderstein/nppPluginManager/issues/7 PM is not available in 64-bit yet, so you have to search manually if a 64bit version of the plugins you wan’t to use is available. See https://notepad-plus-plus.org/community/category/5/plugin-development for update announcements.

  • Sel: in status bar doesn't count non-ASCII characters

    3
    0 Votes
    3 Posts
    2k Views
    Grzegorz HaydukG

    Thanks for your reply.
    I can see that this error occurs when the encoding is set to ANSI.
    When I type something in UTF-8 and then switch to ANSI, I can see that single “ó” in UTF-8 is encoded as two bytes in ANSI, but only first byte is counted in “Sel:”.
    Similar case is when a file is created as ANSI and there are only legal (correct) ANSI characters - diacritic characters (ą, ę, ł, ó, …) in the file - then they are not counted in “Sel:”.
    Can you duplicate the bug now?

  • Search for inconsistent line endings with a regex?

    Locked
    4
    0 Votes
    4 Posts
    3k Views
    Claudia FrankC

    @Alan-Kilborn

    Hi Alan,

    currently I only have a solution for each eol.

    (?-s).*$(?!\r\n) (lines not ending in win eol format \r\n) (?-s).*$(?!\n) (lines not ending in unix eol format \n) (?-s).*$(?=\n|\r\n) (lines not ending in old mac eol format \r)

    Cheers
    Claudia