• n++ portable without plugin manager???

    Locked
    8
    0 Votes
    8 Posts
    1k Views
    PeterJonesP

    @Pierfrancesco-Marro said:

    I found https://imgur.com/a/I7h8CoI

    ![](https://i.imgur.com/8J8JSl3.png):

    The original version 7.6 was rather problematic. I think you should follow @Meta-Chuh 's advice, and grab v7.6.6. It will have the Plugins Admin for you to use.

  • DSpellCheck advanced options - underline style

    Locked
    2
    1 Votes
    2 Posts
    468 Views
    Meta ChuhM

    welcome to the notepad++ community, @Peter-Gründler

    this does not seem to happen to me, using notepad++ 7.6.6 32 bit and dspellcheck 1.4.11.0.

    if i switch to round box, and right-click on any misspelling and choose ignore for current session, only the highlight of this word is removed, but not all.

    maybe the author @Predelnik has an idea what could cause this, or you can have a look at the issue tracker, if something similar has been reported already:
    https://github.com/Predelnik/DSpellCheck/issues

    what dspellcheck version are you using, and what is your debug information from the notepad++ menu: ? > debug info... > copy debug info into clipboard ?

    the debug info of the machine i’ve just tested this is:
    Notepad++ v7.6.6 (32-bit)
    Build time : Apr 3 2019 - 23:49:50
    Path : C:\Program Files (x86)\Notepad++\notepad++.exe
    Admin mode : OFF
    Local Conf mode : OFF
    OS : Windows 7 (64-bit)
    Plugins : ComparePlus.dll dbgpPlugin.dll DSpellCheck.dll ElasticTabstops.dll EmmetNPP.dll HexEditor.dll IndentByFold.dll JSMinNPP.dll LuaScript.dll MarkdownViewerPlusPlus.dll mimeTools.dll NavigateTo.dll NppAutoIndent.dll NppConverter.dll nppcrypt.dll NppExport.dll NppFTP.dll NppJumpList.dll NppMarkdownPanel.dll NppSnippets.dll NppTextFX.dll NppUISpy.dll PreviewHTML.dll PythonScript.dll SourceCookifier.dll Tidy2.dll XMLTools.dll

    best regards.

  • Bookmarking multi-line regex is not working as expected

    5
    2 Votes
    5 Posts
    848 Views
    guy038G

    Hello, @christian-schmitt,

    Just try this regex, below. It should bookmark all the lines that you want to !

    (?-is)^2019.*"(INSERT|UPDATE|DELETE)".*|^\h+.+

    How this regex works :

    First, the in-line modifiers (?-is) assure that :

    The regex engine will consider any dot as a single standard character, only ( -s part )

    The search is performed in an non-insensitive to case way ( -i part )

    Then, the regex is composed of two alternatives, delimited with the | alternation symbol

    The part ^2019.*"(INSERT|UPDATE|DELETE)".*, similar to your version, search for 2019, at beginning of line, followed wiht any range, even null, of standard characters, till one of the 3 words INSERT, UPDATE or DELETE, surrounded by double-quotes, and then, followed with the remainder of current line

    The part ^\h+.+ searches for any line beginning with either some space or tabulation character(s) ( so horizontal blank chars ) and the non-null remainder of these lines

    Note that if you just want to bookmark the lines, ignoring the red highlighting, you just need the shortened version, below :

    (?-is)^2019.*"(INSERT|UPDATE|DELETE)"|^\h+

    Disable the View > Word wrap option for a better lisibility ;-))

    Best Regards,

    guy038

  • Updated to 7.6.6, and now none of my plugins load

    Locked
    16
    0 Votes
    16 Posts
    2k Views
    Meta ChuhM

    @Alan-Kilborn

    there are two ways to change your avatar again, as long as you still have a local copy of your tribal avatar:

    1) change your avatar at your primary account, like google, for all platforms you use.

    2) change your avatar just for the notepad++ community:

    click on your avatar at the top right of your screen.
    then click at your name (Alan Kilborn), as seen at the screenshot below.
    (… yes, i know it does not say Alan Kilborn there … 😉)
    Imgur

    click on edit, as seen at the next screenshot:
    Imgur

    click on change picture as seen at the next screenshot.
    important note: do not press delete account under any circumstances. 😄
    Imgur

    click on 'upload new pictureand select your desired avatar picture. once you're satisfied, hitsave changes`.

    btw: i think you can also upload animated gifs as avatars here, like this “admin email” dude a while ago, just in case you want to play around a bit.

  • Post images in community forum

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Zapas KoniecznyZ

    Thank you :):):)
    Imgur

  • A problem in Notepad++

    Locked
    2
    0 Votes
    2 Posts
    477 Views
    Meta ChuhM

    welcome to the notepad++ community, @Ramin-Parsa

    this is the default behaviour and has always been that way.

    when you switch from ltr to rtl, notepad++ will switch to right to left text editing for all tabs.

    best regards.

  • Right-click menu behaviour is intermittently buggy.

    Locked
    2
    0 Votes
    2 Posts
    509 Views
    Meta ChuhM

    welcome to the notepad++ community, @MaxWattage

    this is intriguing, and i hope we can work it out.

    If Notepad++ is currently open, then [sometimes] Notepad++ won’t open, and nothing happens. (erratic/buggy behaviour)
    This was tested on Windows 8.1 pro 64-bit

    if notepad++ is in mono instance mode, and it is already open, it will not open another window, but it should always open your file.

    can you check, if it makes any difference, whether the file to be opened, but does not open, has following conditions:

    the file has spaces in it’s path or filename. the file is on a network drive and notepad++ is in administrator mode, which does not have access to the network drives mapped to your user account.

    also your debug info can be of help. please go to the notepad++ menu ? > debug info... > copy debug info into clipboard and paste the clipboard content here.

    many thanks and best regards.

  • 0 Votes
    9 Posts
    3k Views
    Alan KilbornA

    @FrankAndrew57 said:

    If I could have the 32bit and the 64bit versions installed on the same machine at the same time it would be easier to do an exact comparision

    The portable versions of each would be great for this kind of compare; both can exist on the same system.

  • Autocomplete bug in 7.6.2 and later?

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Meta ChuhM

    @Charlie-Fuller

    the missing autocomplete experience, might be due to the folder location changes of the newer notepad++ releases, causing the installer not to automatically select the autocompletion option when updating.

    (the old folder location was Notepad++\plugins\APIs, and the new folder location is Notepad++\autoCompletion\)

    the usual fix is to install notepad++ again, on top of your existing notepad++, and make sure that autocompletion is activated at the installer.
    (recommended version: 7.6.6)

    here are some details from a similar issue:

    please check if C:\Program Files (x86)\Notepad++\autoCompletion\xml.xml exists. (folder location example of a default 32 bit install)

    if it does not exist, please download the 7.6.6. 32 bit installer from >>> here <<< ,
    or the 7.6.6. 64 bit installer from >>> here <<< ,
    and re-install it on top of your existing notepad++.
    important note: make sure that auto-completion files is selected when re-installing.

    if it does exist, please go to settings > preferences > auto-completion and check that function and word completion and function parameters hint on input are activated, as seen at the screenshot below:

    best regards.

  • Tab Key Indenting Line Instead of Body

    Locked
    14
    0 Votes
    14 Posts
    3k Views
    shdawsonS

    Yes. The only change necessary on this end was Tab settings going from [Default] to normal.

    The missing understanding was both the terminology where this setting was located from previous reply statements and the video of how different combinations come together.

    I appreciate your kind assistance.

    Thanks,
    -SHD

  • Old Time user, updated to new version, need help

    Locked
    7
    0 Votes
    7 Posts
    865 Views
    PeterJonesP

    @Thomas-Petersen said:

    Not sure [why] Plugin manager didnt’ remove it but Plugin Admin did

    Because Plugins Admin is built into Notepad++ v7.6.x and newer, and is compatible with the newest (v7.6.6); whereas Plugin Manager was an externally-maintained tool which is now incompatible with v7.6.x.

    Since you keep refusing to help us help you (ie, post the Debug Info), we cannot actually confirm your version number… but since you have Plugins Admin available, I assume it’s v7.6.x, and since you said you just upgraded to a new version, I am going to further assume that you upgraded to the most recent. But really, if you want our help, you’ll provide the info we ask for. If you don’t want our help, you’ll keep giving replies that ignore our advice and queries.

    (If you want to get rid of the 20min delay between posts, people will need to upvote you. I am guessing that won’t happen until you start showing a willingness to help us help you. For example, I am sure you could get the requisite two upvotes just by actually posting the Debug Info.)

  • to creat a forum

    Locked
    3
    0 Votes
    3 Posts
    779 Views
    Meta ChuhM

    @sams-sams

    hello i woud like to create a forume when the people to be register with google and facebook and to be create topic in different category andto be enjoy message personnel and with a groupe of moderator with notepad

    great, just post your link here when you’re done, and we might or might not visit it.

    many thanks and best regards.

  • the ctrl+shift+s option do not go away

    Locked
    2
    0 Votes
    2 Posts
    446 Views
    Meta ChuhM

    welcome to the notepad++ community, @Rohan-Gadalkar

    we need more information, like what files are open, and your debug information from the notepad++ menu ? > debug info... > copy debug info into clipboard.

    we would also need details about your current settings > preferences > misc > file status autodetection.

    note: usually the save all option stays greyed out, if all files are saved and remain unchanged, but if a file gets an update from an external program, the save all option will reappear, as the file on disk might differ from the version opened in notepad++.

    best regards.

  • Not worth to read ...

    5
    8 Votes
    5 Posts
    943 Views
    Meta ChuhM

    @Claudia-Frank

    if you have time, or you just need a different place to vent from time to time, just give us a visit.
    you are always very welcome.

    with sincere and best regards.

  • Selection "File Association" more efficient

    Locked
    1
    0 Votes
    1 Posts
    320 Views
    No one has replied
  • Regarding the poor TestFX plugin

    Locked
    4
    0 Votes
    4 Posts
    941 Views
    Karsten75K

    @PeterJones

    Thanks! Seems I’m not the only person struggling with the formatting learning curve. :)

    Now if only I could pin that or add it to my favorites or… I’ll get there.

  • Update to 7.6.6 wipes out saved macros and installed plugins

    Locked
    3
    0 Votes
    3 Posts
    590 Views
    Meta ChuhM

    @Ken-Detweiler

    is your “Thanks a lot.” sarcastic, and intended to vent, or do you need help, or both ?

  • "File not found" when trying to save a new file

    10
    0 Votes
    10 Posts
    4k Views
    SuperVillainPresidentS

    So, in case anyone is having a similar issue, it was a Windows Defender problem. I guess it was in the last update that there is a Folder Access permission that was set to on. You can either turn it off or set notepad++ to be allowed access. Here is the link that fixed it for me:

    https://answers.microsoft.com/en-us/windows/forum/windows_10-files/file-not-found-check-the-file-name-and-try-again/0734e837-b9f7-485e-93c5-5592f804b4c8

  • Running python

    8
    0 Votes
    8 Posts
    23k Views
    PeterJonesP

    I know that @anand-Mishra hasn’t been back in a couple weeks. But if someone else finds this thread, looking for the same issue, please go to “Trying to run a .py file in IDLE from Notepad++”, where the same problem (or very similar) was solved.

  • "Remember Current Session" - like or dislike?

    22
    0 Votes
    22 Posts
    8k Views
    Alan KilbornA

    @Sunil-Gupta said:

    Name one other application

    Dude, you are seriously not understanding. Let me try one more time: Applications need something that sets them apart from other similar programs. For many many people and Notepad++, a core one of these things is the ability to exit with unsaved files. It makes no difference that other applications don’t do this. Since when do you have to be like the crowd to be correct/innovative?

    Again, I don’t use the feature. But I understand.