• Login
Community
  • Login
  1. Home
  2. General Discussion
Log in to post
Load new posts
  • Recently Replied
  • Recently Created
  • Most Posts
  • Most Votes
  • Most Views
  • M

    https://notepad-plus-plus.org/ - Is the website down right now??

    Watching Ignoring Scheduled Pinned Locked Moved
    2 Jul 23, 2019, 12:33 PM
    Jul 23, 2019, 11:46 AM
    0 Votes
    2 Posts
    1k Views
    A Jul 23, 2019, 12:33 PM

    @Mike-Candon https://notepad-plus-plus.org/community/topic/17985/notepad-website-is-not-reachable

  • M

    how to change all these file names quickly

    Watching Ignoring Scheduled Pinned Locked Moved
    7 Jul 22, 2019, 4:39 AM
    Jul 12, 2019, 8:54 PM
    0 Votes
    7 Posts
    18k Views
    P Jul 22, 2019, 4:39 AM

    To rename multiple files, use this command syntax and press Enter:

    ren .ext1 ???-new_filename_part.

    Command syntax example:

    ren .jpg ???-hikingTrip.

  • C

    Plugins Admin: add plugin release date to sort plugins

    Watching Ignoring Scheduled Pinned Locked Moved
    18 Jul 19, 2019, 1:27 PM
    Jul 9, 2019, 8:46 PM
    6 Votes
    18 Posts
    4k Views
    C Jul 19, 2019, 1:27 PM

    Thanks Alan for the clarification. My English is not so good.

  • C

    Adding leading zeros or additional leading space for line numbers

    Watching Ignoring Scheduled Pinned Locked Moved
    7 Jul 15, 2019, 2:34 PM
    Jul 5, 2019, 8:25 PM
    1 Votes
    7 Posts
    2k Views
    A Jul 15, 2019, 2:34 PM

    @guy038 said:

    …zoom…

    But if it is really a factor for you, you could put it in a zoom-notify :

    try: zoom_notify_installed except NameError: def callback_sci_ZOOM(_): editor.setMarginWidthN(0, editor.textWidth(33, "12345678")) editor.callback(callback_sci_ZOOM, [SCINTILLANOTIFICATION.ZOOM]) zoom_notify_installed = True editor.setMarginWidthN(0, editor.textWidth(33, "12345678"))

    (for Pythonscript; I don’t know the Luascript way of doing that)

  • A

    File length is too large and lines number can not show completly.

    Watching Ignoring Scheduled Pinned Locked Moved
    3 Jul 14, 2019, 5:34 PM
    Jul 14, 2019, 3:05 AM
    0 Votes
    3 Posts
    654 Views
    P Jul 14, 2019, 5:34 PM

    @Terry-R said:

    Do you have the Notepad++ view narrow?

    I ran a quick experiment: yes, if you shrink the window width too far, you can cut off part of the “lines: ####” display.

    That’s likely the OP’s problem

  • E

    could I change CR LF symbol and color? like eclipse style?

    Watching Ignoring Scheduled Pinned Locked Moved
    3 Jul 14, 2019, 5:48 AM
    Jul 9, 2019, 2:42 AM
    0 Votes
    3 Posts
    680 Views
    E Jul 14, 2019, 5:48 AM

    @Ekopalypse

    like the link below, but I jest wang the CR LF not so conspicuous.

    link

  • G

    Basic line number replacement

    Watching Ignoring Scheduled Pinned Locked Moved
    3 Jul 13, 2019, 4:15 AM
    Jul 12, 2019, 8:16 PM
    0 Votes
    3 Posts
    777 Views
    R Jul 13, 2019, 4:15 AM

    Can you post same sample text showing the original and what you would like it to be?

  • A

    RECUPERATION OPTIONS ET LISTE FICHIERS OUVERTS de V 6.8.6 vers 7.7.1

    Watching Ignoring Scheduled Pinned Locked Moved
    1 Jul 12, 2019, 2:08 PM
    Jul 12, 2019, 2:08 PM
    0 Votes
    1 Posts
    416 Views
    No one has replied
  • G

    Code folding; files going between Linux and Windows

    Watching Ignoring Scheduled Pinned Locked Moved
    8 Jul 12, 2019, 1:18 PM
    Oct 20, 2016, 7:46 AM
    0 Votes
    8 Posts
    4k Views
    R Jul 12, 2019, 1:18 PM

    With reference to previous post, please see screenshot here:

    https://imgur.com/a/aaky5Rx

  • S

    7.7.1 not responding

    Watching Ignoring Scheduled Pinned Locked Moved
    1 Jul 12, 2019, 2:23 AM
    Jul 12, 2019, 2:23 AM
    0 Votes
    1 Posts
    533 Views
    No one has replied
  • D

    Find/Replace & deleting

    Watching Ignoring Scheduled Pinned Locked Moved
    8 Jul 11, 2019, 8:27 PM
    Jul 10, 2019, 5:08 PM
    0 Votes
    8 Posts
    2k Views
    G Jul 11, 2019, 8:27 PM

    Hello, @dave-dyet, @terry-r, @peterjones and All,

    Here is a 3rd possible solution :

    SEARCH (?s-i).+?(\u.+?)(?=<)|(?s).+

    REPLACE ?1\1\r\n ( OR ?1\1\n for Unix files )

    Notes :

    The remainder of text, near the very end of file, is just wiped out. Indeed, when the second alternative (?s).+ is used, the group 1 does not exist. So, no replacement is done, because of the conditional replacement ?1....

    I used the \u syntax which matches, when sensitive search is processed, any uppercase letter of any occidental Unicode script ( Latin, Greek, Cyrillic,… ). It’s probably useless, as in English/American language, no country begins with an accentuated character, anyway ! However, regarding this specific case, writing (?-i)\u is as easy as writing (?-i)[A-Z] ! Refer to the list of sovereign states, below :

    https://en.wikipedia.org/wiki/List_of_sovereign_states

    And we get the text, below :

    Africa Angola Argentina Armenia Asia Australia Australia > New South Wales Australia > Northern Territory

    Peter, from your solutiion, I built a new version, which can do all the job, in one go ;-)) So, here is the 4th version :

    SEARCH (?-s)<.+?>|^\h*\R?|(.+?)(?=<)

    REPLACE ?1\1\r\n ( OR ?1\1\n for Unix files )

    Notes :

    This regex allows the pertinent items to begin with an lowercase letter, either !

    If group 1 does not exist, then the <.....> blocks OR possible leading blank chars, followed with a possible line-break, are deleted

    If group1 does exist, then the different items of the drop-down list, are listed, as usual, one per line

    Best Regards,

    guy038

  • LapsisAngelusL

    Getting a start on figuring some coding things out.

    Watching Ignoring Scheduled Pinned Locked Moved newbie
    12 Jul 11, 2019, 8:00 AM
    Jan 11, 2017, 3:54 AM
    0 Votes
    12 Posts
    5k Views
    Ankit DixitA Jul 11, 2019, 8:00 AM

    Hey, You can also check this https://hackr.io/tutorials/learn-c-plus-plus there are top listed tutorials recommended by the programming community.

  • JanJ

    How can I speed up Notepad++ ?

    Watching Ignoring Scheduled Pinned Locked Moved
    4 Jul 9, 2019, 8:05 PM
    Jul 9, 2019, 9:19 AM
    0 Votes
    4 Posts
    3k Views
    cipher-1024C Jul 9, 2019, 8:05 PM

    Even if @Ekopalypse 's suggestions work for you, it seems like having a script to break up the file into year-size-chunks would be a sensible thing to do. I have no idea what the format for your file is, but I would think you could parse it with a Python script or something and break it into more manageable size pieces.

  • Dov FuchsD

    How do I add the "Launch in Chrome" in version 7.7.1?

    Watching Ignoring Scheduled Pinned Locked Moved
    10 Jul 7, 2019, 7:01 PM
    Jul 7, 2019, 2:53 PM
    0 Votes
    10 Posts
    4k Views
    A Jul 7, 2019, 7:01 PM

    @Dov-Fuchs
    The file you want to open in the browser must be saved as HTML
    …this is important!!!

  • Daniel MoçoD

    to shade text color

    Watching Ignoring Scheduled Pinned Locked Moved
    2 Jul 7, 2019, 4:51 PM
    Jul 6, 2019, 10:05 PM
    0 Votes
    2 Posts
    431 Views
    EkopalypseE Jul 7, 2019, 4:51 PM

    @Daniel-Moço

    I can speak only for myself but I’m absolutely lost - I don’t understand what you are trying to do. Maybe you wanna post in your native language and with English translated text in the hope that one is out there who is able to understand what you are trying to achieve.
    If you can provide a screenshot, which can be embedded using this syntax ![](URL_OF_YOUR_UPLOADED_IMAGE), it might be useful as well.

  • Greg HendricksG

    Missing design standards and frequent app bugs

    Watching Ignoring Scheduled Pinned Locked Moved
    5 Jul 7, 2019, 1:23 AM
    Jul 6, 2019, 6:54 PM
    -2 Votes
    5 Posts
    2k Views
    AngryGamerA Jul 7, 2019, 1:23 AM

    @Greg-Hendricks

    This belongs in the Boycott Notepad++ section 😛

  • Norbert WasserN

    New Feature: In the "Find"-"Mark"-Tab at "Bookmark line" define the lines before and after for getting a bookmark

    Watching Ignoring Scheduled Pinned Locked Moved
    4 Jul 4, 2019, 1:36 AM
    Jun 29, 2019, 8:12 PM
    0 Votes
    4 Posts
    963 Views
    A Jul 4, 2019, 1:36 AM

    @Norbert-Wasser

    This thread discusses what you are wanting to do: https://notepad-plus-plus.org/community/topic/16701/how-to-mark-lines-above-marked-lines

  • Vladimir KouznetsovV

    please process WM_DPICHANGED message

    Watching Ignoring Scheduled Pinned Locked Moved
    3 Jul 3, 2019, 4:27 PM
    Jul 1, 2019, 4:03 PM
    0 Votes
    3 Posts
    577 Views
    Vladimir KouznetsovV Jul 3, 2019, 4:27 PM

    Thanks, opened issue - https://github.com/notepad-plus-plus/notepad-plus-plus/issues/5873 .

  • 廖红贵廖

    Column Editor Issue.........

    Watching Ignoring Scheduled Pinned Locked Moved
    5 Jul 3, 2019, 3:47 PM
    Jul 3, 2019, 1:41 PM
    0 Votes
    5 Posts
    2k Views
    P Jul 3, 2019, 3:47 PM

    @廖红贵 said:

    select 10 rows, when I input the following values: Initial Number = 1, Increase By = 1, Repeat = 10,

    You selected 10 rows, and told to count up from 1, repeating each number 10x. So the first 10 rows were 1, like you told it to do. To see the 2, you would have to have more than 10 lines selected.

    You should probably start with something simpler and easier to see, like 1,1,1, which will just count from 1 to N for the N lines you select:

    ![](https://i.imgur.com/e3XaORb.gif):

  • Paul FlahertyP

    Linux and Mac Version

    Watching Ignoring Scheduled Pinned Locked Moved
    2 Jul 3, 2019, 11:11 AM
    Jul 3, 2019, 12:35 AM
    -1 Votes
    2 Posts
    583 Views
    EkopalypseE Jul 3, 2019, 11:11 AM

    @Paul-Flaherty

    install WINE, install npp - done.
    In addition, on linux there are already some packages are available like snap etc…

The Community of users of the Notepad++ text editor.
Powered by NodeBB | Contributors