• 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
  • P

    Notepad++ portable without plugin_manager

    Watching Ignoring Scheduled Pinned Locked Moved
    2 Oct 27, 2019, 4:43 PM
    Oct 27, 2019, 3:22 PM
    0 Votes
    2 Posts
    398 Views
    P Oct 27, 2019, 4:43 PM

    Notepad++ v7.6 was the first of the transitional versions, moving away from the old dll-based Plugin Manager to the builtin Plugins Admin. However, it wasn’t until v7.6.3 that the new structure stabilized, and if you want a 7.6.x, I’d go with v7.6.6.

    The most recent, however, is v7.8, with improvement s to the editor component. I’d probably recommend that version, unless you are in a minority situation involving outdated plugins.

  • M

    Is there an option to unlock a forum thread?

    Watching Ignoring Scheduled Pinned Locked Moved
    9 Oct 25, 2019, 4:40 AM
    Aug 1, 2019, 11:57 PM
    1 Votes
    9 Posts
    1k Views
    G Oct 25, 2019, 4:40 AM

    Hi, @peterjones,

    OK, I just updated the link !

    BR

    guy038

  • E

    Find Replace .. what happened .. is it being sabotaged ?

    Watching Ignoring Scheduled Pinned Locked Moved
    8 Oct 24, 2019, 4:55 PM
    Oct 24, 2019, 2:14 PM
    0 Votes
    8 Posts
    689 Views
    A Oct 24, 2019, 4:55 PM

    @PeterJones said in Find Replace .. what happened .. is it being sabotaged ?:

    that’s something that could be clarified a bit more in the docs.

    The grouping box has always been very obvious to me, but if it is not to everyone (and apparently it isn’t) then I agree it is a documentation-worthy thing.

  • E

    How to change timestamp to hh:mm:ss.mss format

    Watching Ignoring Scheduled Pinned Locked Moved
    6 Oct 24, 2019, 1:50 PM
    Oct 23, 2019, 9:33 PM
    0 Votes
    6 Posts
    1k Views
    P Oct 24, 2019, 1:50 PM

    For further info, see my boilerplate below.

    For specifics of this, I’ll give a brief description:

    The T and Z are literals, in both the search and replace expressions. The (...) makes a group#1 which contains whatever matches inside. \d matches any digit (0-9, and some other unicode “digit” characters from other languages). \d\d thus matches two consecutive digits; \d{1,2} matches 1 or 2 digits. : matches the literal :. Thus, T(\d\d:\d\d:\d\d)Z matches the hh:mm:ss in between a T and a Z, and stores it in group#1. For the replace, ${1} is the contents of group#1, and everything else is a literal so, “replace it with a T, followed by the contents of group#1 from the find-match, followed by .000 and finally a Z”.

    -----

    Please Read And Understand This

    FYI: I often add this to my response in regex threads, unless I am sure the original poster has seen it before. Here is some helpful information for finding out more about regular expressions, and for formatting posts in this forum (especially quoting data) so that we can fully understand what you’re trying to ask:

    If you have further search-and-replace (“matching”, “marking”, “bookmarking”, regular expression, “regex”) needs, study the official Notepad++ searching using regular-expressions docs, as well as this forum’s FAQ and the documentation it points to. Before asking a new regex question, understand that for future requests, many of us will expect you to show what data you have (exactly), what data you want (exactly), what regex you already tried (to show that you’re showing effort), why you thought that regex would work (to prove it wasn’t just something randomly typed), and what data you’re getting with an explanation of why that result is wrong. When you show that effort, you’ll see us bend over backward to get things working for you. If you need help formatting, see the paragraph above.

    Please note that for all regex and related queries, it is best if you are explicit about what needs to match, and what shouldn’t match, and have multiple examples of both in your example dataset. Often, what shouldn’t match helps define the regular expression as much or more than what should match.

  • H

    Disable fullscreen key

    Watching Ignoring Scheduled Pinned Locked Moved
    4 Oct 22, 2019, 3:14 PM
    Jul 5, 2019, 1:11 PM
    0 Votes
    4 Posts
    719 Views
    P Oct 22, 2019, 3:14 PM

    @Hansli-Müller said in Disable fullscreen key:

    p.s.: Why my full name will be displayed, how to change that??

    Because you filled in your full name (or it was inherited from whatever service you use to sign in).

    Click your “H” avatar in the upper-left corner; click Edit Profile in the pulldown; click on Change Username on the left. That will change what name gets displayed to us. You can also Change Picture to change your avatar.

  • H

    Notepad++ and wine?

    Watching Ignoring Scheduled Pinned Locked Moved
    3 Oct 22, 2019, 11:57 AM
    Oct 22, 2019, 9:25 AM
    0 Votes
    3 Posts
    643 Views
    P Oct 22, 2019, 11:57 AM

    @Hans-Müller ,

    As an alternative you can try https://snapcraft.io/notepad-plus-plus.

    BR

  • J

    Notepad++ was not picking up document changes

    Watching Ignoring Scheduled Pinned Locked Moved
    4 Oct 22, 2019, 7:59 AM
    Oct 21, 2019, 3:30 PM
    0 Votes
    4 Posts
    376 Views
    P Oct 22, 2019, 7:59 AM

    @John-Bowles ,

    As @Alan-Kilborn said, check your preferences - go to Settings->Preferences->MISC and on the right check File Status Auto-Detection state.

  • E

    Blue dot on the left border

    Watching Ignoring Scheduled Pinned Locked Moved
    3 Oct 21, 2019, 2:09 PM
    Oct 21, 2019, 1:52 PM
    1 Votes
    3 Posts
    2k Views
    S Oct 21, 2019, 2:09 PM

    What is that?

    This is a feature named “Bookmark”. There are many operation supported around bookmark. Refer all operation under menu “Search->Bookmark”. Hope, this helps.

  • P

    sort file by date hour like 2019-07-30 15:06:33

    Watching Ignoring Scheduled Pinned Locked Moved
    4 Oct 21, 2019, 12:54 AM
    Sep 30, 2019, 8:26 AM
    0 Votes
    4 Posts
    2k Views
    G Oct 21, 2019, 12:54 AM

    Hello @pcouas and All,

    Could you show us a small part of your log file, with the indication of the date/time fields to be sorted ?

    I’m pretty sure that, using a regex S/R, we could be able to insert a temporary re-organized date/hour field, at beginning of each line, which should be easy to sort, alphabetically ;-))

    See you later,

    Best Regards,

    guy038

  • SuperSandro2000S

    RSS preview shows cookie notice

    Watching Ignoring Scheduled Pinned Locked Moved
    1 Oct 20, 2019, 1:58 AM
    Oct 20, 2019, 1:58 AM
    0 Votes
    1 Posts
    185 Views
    No one has replied
  • Γιαννης ΓιαννηΓ

    Notepad++ function list does not show functions that have more than 2 arguments

    Watching Ignoring Scheduled Pinned Locked Moved
    1 Oct 19, 2019, 6:33 AM
    Oct 19, 2019, 6:33 AM
    0 Votes
    1 Posts
    249 Views
    No one has replied
  • SerhiiS

    Enchancement/Feature Request - Separate icon for .ini, .cfg(configuration)...files.

    Watching Ignoring Scheduled Pinned Locked Moved
    2 Oct 18, 2019, 2:14 AM
    Oct 18, 2019, 12:56 AM
    0 Votes
    2 Posts
    281 Views
    P Oct 18, 2019, 2:14 AM

    The icons for .ini and .cfg files can be changed by the operating system, just like every other file type. They are just using the default textfile icon supplied by Notepad++ because all text files (and by default, Windows considers ini and cfg as text files) have been associated with Notepad++ on your computer. This is not a decision made by Notepad++.

    Google for “windows 10 how to change icon for extension”, or similar, will probably result in helpful links

  • gpo markG

    Wishlist / Feature Request - Autosave every xx Secounds without enabling Save last Session

    Watching Ignoring Scheduled Pinned Locked Moved
    2 Oct 17, 2019, 6:42 PM
    Oct 17, 2019, 6:40 PM
    0 Votes
    2 Posts
    255 Views
    P Oct 17, 2019, 6:42 PM

    This FAQ explains the process for making feature requests.

  • Gokhan VarolG

    Notepad++ 7.8, having issues with the save dialog

    Watching Ignoring Scheduled Pinned Locked Moved
    3 Oct 17, 2019, 4:28 PM
    Oct 17, 2019, 4:12 PM
    0 Votes
    3 Posts
    623 Views
    P Oct 17, 2019, 4:28 PM

    You have brought up two very different issues.

    The first is regard keyboard accelerators: I can confirm that in 7.7.1, when you try to close new 3, you used to be able to hit Y or N to respond, and it would listen. In 7.8, it did not listen to me. (And @Alan-Kilborn’s citing of the issue#6223 shows it’s not just us.)

    The second is regarding Yes to all and No to all. My experiments show it is working correctly. If you have three edited unsaved files open, and you try to close just one (for example, new 3), then there is no “all”, there is just the “one”, so it doesn’t give you the options of Yes to all and No to all. If you use File > Close All or equivalent (including exiting Notepad++ with periodic backup disabled), it will enable the Yes to all and No to all, because there is more than one file to respond to.

    (Yes, I see this is mostly a detailed duplicate of @Alan-Kilborn’s post at this point. It wasn’t when I started, because he hadn’t posted yet.)

  • ?

    2 spaces or more in the text filename ?

    Watching Ignoring Scheduled Pinned Locked Moved
    3 Oct 17, 2019, 8:57 AM
    Oct 17, 2019, 8:22 AM
    0 Votes
    3 Posts
    254 Views
    ? Oct 17, 2019, 8:57 AM

    Thank you, gurikbal singh
    It seems to do the trick :)

  • Richard CR

    Notepad++ in SCCM Managed Environment

    Watching Ignoring Scheduled Pinned Locked Moved
    6 Oct 15, 2019, 8:01 AM
    Aug 26, 2019, 8:32 PM
    0 Votes
    6 Posts
    4k Views
    fralbertF Oct 15, 2019, 8:01 AM

    @Richard-C : of course we have the line
    <GUIConfig name=“noUpdate”>yes</GUIConfig>
    in C:\Program Files (x86)\Notepad++\config.model.xml

    and we also replace the update url in C:\Program Files (x86)\Notepad++\updater\gup.xml :
    <InfoUrl>https://localhost.php</InfoUrl>
    to avoid NP++ manual updates.

    (x86) if you have the 32bits version…

  • rinku singhR

    please add user defined skin `Zenburn` in this community settings

    Watching Ignoring Scheduled Pinned Locked Moved
    2 Oct 14, 2019, 2:38 PM
    Oct 14, 2019, 1:52 PM
    0 Votes
    2 Posts
    331 Views
    A Oct 14, 2019, 2:38 PM

    @gurikbal-singh

    What does that even mean? : “in this community settings”

  • Arhack BifrostA

    Scrpit for automating multiple "search in Files"

    Watching Ignoring Scheduled Pinned Locked Moved
    3 Oct 12, 2019, 8:50 PM
    Oct 12, 2019, 8:28 PM
    0 Votes
    3 Posts
    417 Views
    Arhack BifrostA Oct 12, 2019, 8:50 PM

    @Alan-Kilborn Thanks for your answer yes you are right there is such commands i guess, that what i noticied by looking at Scintilla documention, but i still wonder how NotePad interpret this messages

  • kiranunixK

    NPPFTP setup with two factor authentication

    Watching Ignoring Scheduled Pinned Locked Moved
    5 Oct 12, 2019, 2:22 PM
    Oct 9, 2019, 8:10 PM
    0 Votes
    5 Posts
    1k Views
    P Oct 12, 2019, 2:22 PM

    @kiranunix said in NPPFTP setup with two factor authentication:

    I followed these steps . It works. i am able to connect with Two factor authentication .

    Great news.

    Are there any settings to do sudo login to another user ?

    That’s not an option I’ve heard of for any ftp client (though I am not an expert). Sorry.

  • Rotua Frans ManaluR

    How to automatically make lot of Notepad or .txt (plz help)

    Watching Ignoring Scheduled Pinned Locked Moved
    2 Oct 7, 2019, 7:40 AM
    Oct 7, 2019, 7:08 AM
    0 Votes
    2 Posts
    403 Views
    dinkumoilD Oct 7, 2019, 7:40 AM

    @Rotua-Frans-Manalu

    Though the solution for this task is a very simple Batch script I won’t post it here for two reasons:

    This is a Notepad++ user forum, i.e. it’s intended purpose is to help fellow users having problems with Notepad++ and its features and with tasks that can be solved with Notepad++ itself or with a little help by one of its plugins. The solution of this problem is so easy that you have to put only little effort in it to solve it by yourself. Moreover you will learn something useful. Hint: google for batch for loop, the for /l variant is your friend.
The Community of users of the Notepad++ text editor.
Powered by NodeBB | Contributors