Community
    • Login
    1. Home
    2. Recent
    Log in to post
    Load new posts
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All categories
    • All tags
    • Thomas ZitoT

      Legacy Print dialog freeze (Windows)

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      4
      0 Votes
      4 Posts
      13 Views
      Terry RT

      @Thomas-Zito
      It can be locked but we rarely do that. Only if the posts go off on a tangent or have a subsequent post with a very large time gap to the previous (so the post may have irrelevant information, maybe a later version has sorted the issue).

      In your case the thread has only just started. Give it time, possibly someone may recall a similar issue, maybe other ideas pop up. I know you aren’t overly concerned as the situation may self resolve anyways, but please do come back to us if you have any updates.

      Terry

    • PeterJonesP

      Config Files Need Updating, Too

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion pythonscript config-files stylers.xml langs.xml syntax highlight
      43
      9 Votes
      43 Posts
      11k Views
      PeterJonesP
      ConfigUpdater Plugin v2.2.0

      ConfigUpdater Plugin has released v2.1.0, available thru GitHub release page, with improvements to Validation Dialog:

      Rename *.model.xml button to Go To Model (#23), and improve its ability to align the validating XML with the model file (#25). Add ability to copy the selected error message to Windows Clipboard (#23) Allow resizing dialog (#23) Add easier-to-understand error message for the most-common errors (#22) Add help button for more details on how to use the Validation dialog (#22)
    • Vitalii DovganV

      Ask Scintilla about the text scope such as enclosing brackets or quotes?

      Watching Ignoring Scheduled Pinned Locked Moved Notepad++ & Plugin Development
      7
      0 Votes
      7 Posts
      119 Views
      CoisesC

      @Vitalii-Dovgan

      Be careful, though, what you mean by a “scope.”

      Consider your own example from earlier in the thread:

      void func() { const auto s = "abc"; }

      On the basis you describe, the word auto would appear to be a “scope” beginning with a and ending with o.

    • donhoD

      Notepad++ v8.8.3 Release Candidate

      Watching Ignoring Scheduled Pinned Locked Moved Announcements
      38
      6 Votes
      38 Posts
      2k Views
      Ben HB

      @datatraveller1
      Awesome. You are the best!

    • Bill MillerB

      How does one create a desktop icon for this program please?

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      10
      0 Votes
      10 Posts
      215 Views
      mathlete2M

      @Alan-Kilborn said in How does one create a desktop icon for this program please?:

      You should distill that down into something exactly applicable to Notepad++

      Good point.

      The command prompt code below will create a simple shortcut on the Desktop that shows the various command line arguments that NP++ supports in a pop-up before launching NP++ itself. The ICON-based pieces can be omitted if you prefer the standard icon, and PF may need to be adjusted depending on where you actually installed NP++ to.

      set PF=%PROGRAMFILES(x86)% set TARGET='"%PF%\Notepad++\notepad++.exe"' set STARTIN='"%USERPROFILE%\Documents"' set SHORTCUT='"%USERPROFILE%\Desktop\NP++ - help.lnk"' set ICON='"%PF%\Notepad++\updater\updater.ico"' set ARGUMENTS='--help' set PWS=powershell.exe -Command %PWS% "$ws = New-Object -ComObject WScript.Shell; $s = $ws.CreateShortcut(%SHORTCUT%); $S.WorkingDirectory = %STARTIN%; $S.TargetPath = %TARGET%; $S.IconLocation = %ICON%; $S.Arguments = %ARGUMENTS%; $S.Save()"
    • donhoD

      Notepad++ v8.8.3 Release: self-signed certificate

      Watching Ignoring Scheduled Pinned Locked Moved Announcements
      23
      1 Votes
      23 Posts
      2k Views
      donhoD

      FYI, auto-updater has been triggered to v8.8.3.

    • Valery OrlovV

      Applying Proper Case only for the first words of many paragraphs — is it possible?

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      3
      1 Votes
      3 Posts
      97 Views
      Valery OrlovV

      @guy038, Thanks to you, I not only solved my problem, but also became better acquainted with the possibilities of Notepad++.
      Best regards

    • Christopher BasakC

      Font size and toolbar too small in Linux

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      3
      0 Votes
      3 Posts
      106 Views
      ThosRTannerT

      possible AI spam?

    • Silva YunusS

      Improving programming speed and performance in Notepad

      Watching Ignoring Scheduled Pinned Locked Moved Notepad++ & Plugin Development
      2
      0 Votes
      2 Posts
      60 Views
      PeterJonesP

      @Silva-Yunus ,

      The CustomizeToolbar plugin allows you to add menu commands (including saved macros) to the main toolbar, so it’s almost what you are asking for.

      Otherwise, we have a FAQ on Feature Requests

    • JE RamirezJ

      Note++ file location

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      5
      0 Votes
      5 Posts
      368 Views
      PeterJonesP

      @tnet-chrome said in Note++ file location:

      The file config.xml under %AppData% had the recent files list. But if I manually delete any recents, save the file and restart Notepad++ the same list of files is re-added. Why? Where from?

      Because those recents were still in memory when you exited Notepad++, and when Notepad++ exits, it overwrites the existing config.xml with those values from memory – even if you had recently manually edited config.xml. The user-manual section on Editing Config Files has a paragraph explaining how to edit config.xml, because it must be treated differently than the other config files (and config files in general have to be treated differently relative to “normal” files, as that entire section describes).

    • donhoD

      Fighting Malicious Ads on Download Pages

      Watching Ignoring Scheduled Pinned Locked Moved Security
      32
      3 Votes
      32 Posts
      10k Views
      donhoD

      @Fitsneezy
      Both convertfile.ai & gamesuniverse.co are blocked.
      Thank you.

    • Vitalii DovganV

      Auto-Completion Popup is unexpectedly shown when handling SCN_CHARADDED

      Watching Ignoring Scheduled Pinned Locked Moved Notepad++ & Plugin Development
      11
      1 Votes
      11 Posts
      206 Views
      Vitalii DovganV

      Eventually, it seems the best solution is to subclass Scintilla’s WndProc (for both Main and Secondary Scintilla window) and to handle WM_CHAR there.
      The benefits:

      no need to bother with Scintilla’s native notifications and their nuances; full control and clarity of what happens and when it happens: within own WM_CHAR handler, we are able to process a character before it goes to Scintilla and after it goes to Scintilla; simplified code because all the logic is controlled by you and there is no need to conform to Scintilla’s way of processing the events.
    • Dave LangD

      help disabling smart quotes

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      2
      0 Votes
      2 Posts
      62 Views
      Terry RT

      @Dave-Lang
      I’m not familiar with your problem but your issue did make me recall a previous post here.

      It might have occured as you just updated the version of Notepad++ from a very much older one, or possibly changed to a different font.

      Anyways, read that post and maybe you might find the answer.

      Terry

    • Valery OrlovV

      The accents above Cyrillic capital letters are incorrectly displayed

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      3
      0 Votes
      3 Posts
      94 Views
      Valery OrlovV

      @xomx, thank you very much. When I selected another font (Ebrima), the problem was resolved.

    • Jhorbam Baena OrozcoJ

      Editar formulas de excel en Notepad

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      7
      0 Votes
      7 Posts
      85 Views
      Jhorbam Baena OrozcoJ

      @Terry-R Thank You!

    • Tanya DhinaT

      When I opened my Notepad++ I lost all my previous tabs. Couldn't find those. Can someone help me recover those. Those tabs are very important. Thanks

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · · bugs
      2
      0 Votes
      2 Posts
      76 Views
      xomxX

      @Tanya-Dhina

      check Scenario: My (unsaved) files are missing! in FAQ:
      https://community.notepad-plus-plus.org/topic/21782/faq-periodic-backup-vs-autosave-plugin

    • PeterJonesP

      POLL / Discussion: taking over a plugin

      Watching Ignoring Scheduled Pinned Locked Moved Notepad++ & Plugin Development
      7
      3 Votes
      7 Posts
      179 Views
      ThosRTannerT

      I’m not entirely sure how to vote on this because - if with the permission of the original author, I don’t think a new name would be required. However, any other option should have a new name

    • Nathalie De AsisN

      What makes notepad++ capable of making an html ???

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      13
      0 Votes
      13 Posts
      608 Views
      PeterJonesP

      Since this has come up twice in the last couple months, I have cleaned up the instructions and split them off into a dedicated “FAQ: Using the GCC version of Notpead++”

    • PeterJonesP

      FAQ: Using the GCC version of Notpead++

      Watching Ignoring Scheduled Pinned Locked Moved FAQ
      1
      4 Votes
      1 Posts
      86 Views
      No one has replied
    • N

      is thier any posibilities to find and replace multiple words at once ?

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      4
      0 Votes
      4 Posts
      86 Views
      CoisesC

      @neeraj10786:

      While I don’t use it myself (and so can’t give detailed advice), it seems like the MultiReplace plugin by @Thomas-Knoefel would be easier to use than built-in methods. If this is a single-time problem, then the built-in methods others have given make sense; but if it is something you’ll need to do repeatedly, I’d check out that plugin.