Community
    • Login
    1. Home
    2. Help wanted · · · – – – · · ·
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • Peter RowP

      Running as admin doesn't load previously open files

      Watching Ignoring Scheduled Pinned Locked Moved multiple users bug maybe domain
      4
      0 Votes
      4 Posts
      1k Views
      Eko palypseE

      @Meta-Chuh

      that is better than my suggestion as it allows to have full session functionality aka unsaved files for both accounts.
      Good one :-)

      Eko

    • ConteudoAnimal com brC

      Find and Replace using regular expression

      Watching Ignoring Scheduled Pinned Locked Moved
      5
      1 Votes
      5 Posts
      2k Views
      Scott SumnerS

      Imgur

    • dbusrD

      Prevent going to new line on text copy

      Watching Ignoring Scheduled Pinned Locked Moved highlight scroll
      14
      0 Votes
      14 Posts
      5k Views
      dbusrD

      @cipher-1024 said:

      You could just hold the ALT key down…

      This works great. If there was an option to simulate holding the alt key that would be nice but this method will save me so much frustration. I’m glad to see I’m not the only one it affects. My thanks to everyone that replied.

    • brihulseB

      Dialog: '"C:\Program" doesn't exist. Create it?' on startup every time

      Watching Ignoring Scheduled Pinned Locked Moved windows 10
      4
      0 Votes
      4 Posts
      5k Views
      Andy ArismendiA

      This was happening to me and I uninstalled and cleared out every notepad++ folder I could find afterward and it kept happening.

      Turns out it was the Notepad++ shortcut in my Windows 10 taskbar. I deleted it and created a new one by re-pinning it from the start menu after re-installing. My guess is the original one didn’t have quotes around the working directory.

    • Amrita BakshiA

      Unable to save file in notepad++ in windows 10.

      Watching Ignoring Scheduled Pinned Locked Moved
      3
      0 Votes
      3 Posts
      1k Views
      Scott SumnerS

      “File cannot be saved and it may be protected . Open in administrator mode”

      I occasionally see this message, seems fairly random but maybe there is an underlying reason? Dismissing the popup box and attempting to save again usually proceeds with no more problem. So, I dunno…

    • Vasile CarausV

      Regex: search the nearest words at a maximum distance of 6 words

      Watching Ignoring Scheduled Pinned Locked Moved
      12
      0 Votes
      12 Posts
      10k Views
      BipulkumarsinghB

      But i want to asked if i need to check they are not near in range { 6,12 }.

    • Danhlo RoiEDIMOD

      A new Plugin Manager bug

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      0 Votes
      2 Posts
      1k Views
      chcgC

      You might report this issue here https://github.com/bruderstein/nppPluginManager/issues. Please add also the N++ debug info, see https://notepad-plus-plus.org/community/topic/15739/faq-desk-request-for-help-without-sufficient-information-to-help-you

    • Shamay MotiS

      File association and registering as the default application

      Watching Ignoring Scheduled Pinned Locked Moved default applica associations
      15
      0 Votes
      15 Posts
      15k Views
      Cody WrightC

      I just fixed this on my PC. Here is what I did:

      Browse to the location of Notepad++. Copy the directory. Mine was

      “C:\Program Files\Notepad++\notepad++.exe”

      Run CMD as administrator. Create a new file type to associate with file extensions. This command for me was…

      ftype nppfile=“C:\Program Files\Notepad++\notepad++.exe” %1

      Associate your file extension with the new file type. The command was…

      assoc .nfo=nppfile

      Now when I double-click on .nfo files it opens them in notepad++. Hope it works for you!

    • kellyyerK

      extract only two columns

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      0 Votes
      2 Posts
      934 Views
      Scott SumnerS

      @kellyyer

      So the comma character is a more-common delimiter than yours, but if you replace every comma in the following with your special delimiter, this should work or at least get you started:

      Invoke Replace (press ctrl+h).
      Find what zone: (?-s)^(?:.+?,){18}(.+?,.+?),.+ <–again replace every comma here!
      Replace with zone: \1
      Search mode: Regular expression
      Action: Press the Replace All button

      I encourage you to read about regular expressions, some ways to get started here. Try the above expression in some of the interactive regex sites to see how it works. Perhaps you will end up with a new technique in your data manipulation arsenal.

    • Kanchan KumariK

      Notepad++ 7.6

      Watching Ignoring Scheduled Pinned Locked Moved notepad++ 7.6
      5
      0 Votes
      5 Posts
      3k Views
      PeterJonesP

      NPP 7.6 changed the way that plugins are handled. This post gives a quick summary, using XMLTools as the example. This one goes into more detail for helping someone through the process. This is the official post announcing the change, and here is a discussion of the changes to the plugin directory structure. There are quite a few other posts spread throughout the forum, if you spend a few minutes looking for them.

      I think the first is most likely to give you the quick information you want.

      Until the Plugin arrangement stabilizes, I am staying with my working 7.5.8 instead of upgrading to the 7.6 (or beyond), so I haven’t tried any of the recommendations. However, those links will give you a starting point.

    • Patrick ColemanP

      Automate/Schedule a Macro

      Watching Ignoring Scheduled Pinned Locked Moved
      15
      0 Votes
      15 Posts
      5k Views
      dinkumoilD

      @Scott-Sumner

      Hmm, the plugin itself does nearly nothing when it is loaded, it only adds its menu entries to the Notepad++ UI. Only when you click on the Spy! menu entry it examines the main menu and the toolbar of Notepad++ and fills its trees. All these data gets thrown away when you close the dialog.

      But it is a Delphi application and as such it incorporates the needed parts of the VCL (Visual Component Library), the abstraction layer of Delphi for the Win32 API. In this context it loads a noticeable amount of Windows DLL files. Maybe this causes the increased load time.

      I have installed about to 45 plugins, thus my Notepad++ needs some time to start up anyway and I was not aware of an increased load time after adding the new plugin.

    • Raghad QuR

      User Defined Language coloring whole line

      Watching Ignoring Scheduled Pinned Locked Moved
      3
      0 Votes
      3 Posts
      2k Views
      Eko palypseE

      @Raghad-Qu

      The current pythonscript plugin has even an example which looks like is what you are looking for.

      Eko

    • vincitysportia heroV

      how can I do to have two in two columns. ( 1 2 3 4 5 6 7 columns)

      Watching Ignoring Scheduled Pinned Locked Moved
      4
      0 Votes
      4 Posts
      1k Views
      Scott SumnerS

      @Meta-Chuh

      Well, maybe… Let’s see if at least one of the “trainees” can put forth the question in such a way as to get a satisfactory answer.

    • Æþelleo DurkinÆ

      Unable to use any downloaded plugins.

      Watching Ignoring Scheduled Pinned Locked Moved
      5
      0 Votes
      5 Posts
      3k Views
      rinku singhR

      @Æþelleo-Durkin
      Notepad++ v7.6 (32-bit)
      Build time : Nov 12 2018 - 23:51:42
      Path : C:\Program Files\Notepad++\notepad++.exe
      Admin mode : OFF
      Local Conf mode : OFF
      OS : Windows 7 (32-bit)
      Plugins : DSpellCheck.dll mimeTools.dll NppConverter.dll NppExport.dll

      answer already given there:
      https://notepad-plus-plus.org/community/topic/16629/notepad-7-6-and-the-plugin-textfx/10

    • Muhammad KhanM

      List frequency of duplicates

      Watching Ignoring Scheduled Pinned Locked Moved
      12
      0 Votes
      12 Posts
      4k Views
      Scott SumnerS

      @Muhammad-Khan

      You’re an absolute f***ing retard

      Maybe…but if so it doesn’t make sense that I have far more “reputation points” on this site than anyone else. Hmmmm…

    • santhosh kumarS

      I install new version notepad++.

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      0 Votes
      2 Posts
      747 Views
      Raghad QuR

      1- Download Plugin Manager from here

      https://github-production-release-asset-2e65be.s3.amazonaws.com/242070/07235880-c507-11e8-8e61-7a2ad4247906?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20181209%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181209T103203Z&X-Amz-Expires=300&X-Amz-Signature=bb1ecb86f76b355ece5b047ee35e8c2f8469d1fa25fc5a52fe5a438a8c2d20e6&X-Amz-SignedHeaders=host&actor_id=0&response-content-disposition=attachment%3B filename%3DPluginManager_v1.4.12_x64.zip&response-content-type=application%2Foctet-stream

      2- Extract the contents of zip file under “C:\Program Files\Notepad++”

      3- Restart Notepad++

    • Michael McCarthyM

      Ubuntu 18.04 - Notepad++ will not launch.

      Watching Ignoring Scheduled Pinned Locked Moved
      5
      0 Votes
      5 Posts
      6k Views
      Özkan ÜNVERÖ

      https://askubuntu.com/questions/477480/notepad-cannot-launch-firefox/1099411#1099411

    • Indrk toyouI

      while search comments how to exclude in notepadd++?? i need plugin same.

      Watching Ignoring Scheduled Pinned Locked Moved
      6
      0 Votes
      6 Posts
      2k Views
      guy038G

      Hello, @indrk-toyou, @peterjones and All,

      Ah ! Peter, I needed some time to figure out the correct regex, but it should, indeed, match all occurrences of the word foo, which are, both, outside multi-lines comments /*.....*/ and before any // start of a line comments ;-))

      Note that finding a regex that matches each kind of C comments was rather easy ! However taking these two features in account, in a same regex, was really a tricky work !!

      So, if options Regular expression and Wrap around are selected, in the Find/Replace/Mark dialog, a possible solution is :

      (?-i)((?s)/\*.*?\*/((?!/\*).)*?|(?-s)(\G|^)((?!//|/\*).)*?)\Kfoo , if you want to match the word foo, with its exact case

      (?i)((?s)/\*.*?\*/((?!/\*).)*?|(?-s)(\G|^)((?!//|/\*).)*?)\Kfoo , if you want to match the word foo, whatever its case

      So, assuming the text below ( Please, no coherent C code, Just to verify that the regex does work as expected ! )

      The regex finds /marks 21 occurrences of foo !

      "foo" // First match void foo(void) foo { // Match the word foo, before //, but NOT these foo, located after FIRST // foo int bar = foo(); foo // match the TWO strings "foo" foo foo foo /* bar = recurse() + foo(); // foo INSIDE a multi-lines comment, so should be IGNORED i = foo(); // Word "foo" still IGNORED ! foo */ foo = foo * 7 // The FIRST "foo" is IGNORED, only ! /* foo A SECOND multi-lines comment, containing some foo strings foo foo*/ /* foo And a THIRD multi-lines comment ! foo*/ return( foo()); // Match "foo" BEFORE the // symbol for comment LINE foo() foo/* foo */foo // One-line comment block with foo, surrounded with two words "foo" OUTSIDE comment foo/**/foo // "foo" OUTSIDE One-line comment block foo /* foo Two consecutive TWO-lines comment blocks, containing foo, split on THREE lines */ foo /* foo */ foo } s = "foo" // LAST item (foo)

      Notes :

      Of course, you may replace the word foo by any string or, even, a complete regex !

      This regex does not handle some oddities as, for instance, */......./* or nested multi-lines comments /*..... /*.....*/....... */

      BEWARE : If you need to delete or replace all occurrences of the string foo, outside comments, with something else, you must use the Replace All button, exclusively and not the Replace button ( step-by-step replacement )

      Allow me to not explain this regex, right now ! I need to think about it, again. May be an easier solution will comes to my mind ;-))

      Probably, I just missed a very easy way ! ( In France, we have an expression : “like the tree which hides the forest” ! ) So, I’m waiting your solutions !

      Best regards,

      guy038

    • Danhlo RoiEDIMOD

      Uninstall Plugin 3P-Progress-Programers-Pal

      Watching Ignoring Scheduled Pinned Locked Moved
      1
      0 Votes
      1 Posts
      651 Views
      No one has replied
    • msccreaterM

      version7.6 plugin not work, don't konw how to install plugin "open file in slotion"

      Watching Ignoring Scheduled Pinned Locked Moved plugin
      2
      0 Votes
      2 Posts
      833 Views
      chcgC

      See https://notepad-plus-plus.org/news/notepad-7.6-released.html
      and
      https://notepad-plus-plus.org/community/topic/16566/support-for-plugins-admin-npppluginlist
      https://notepad-plus-plus.org/community/topic/16494/new-built-in-plugin-admin-plugin-manager-is-ready

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