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
    • Vitalii DovganV

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

      Watching Ignoring Scheduled Pinned Locked Moved Notepad++ & Plugin Development
      8
      0 Votes
      8 Posts
      2k Views
      Vitalii DovganV

      @Coises

      SCI_BRACEMATCH is pretty useful as well, when dealing with (), [], {} and <>.

      As for “” and ‘’ (as well as other possible situations when SCI_BRACEMATCH returns -1), the internal functions findLeftBracket and findRightBracket in XBrackets Lite do pretty good job there.

      The exported functions GoToMatchingBracket and SelToMatchingBracket already work, though may need some tuning. The source code is here:
      https://github.com/d0vgan/npp-XBracketsLite/commits/feature/GoToNearestBr/

    • Thomas ZitoT

      Legacy Print dialog freeze (Windows)

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      8
      0 Votes
      8 Posts
      384 Views
      Alan KilbornA

      @PeterJones said in Legacy Print dialog freeze (Windows):

      In Emacs (and possibly other unixy apps), control key combos are indicated with…

      Nice to know, I guess, but I could’ve lived without that knowledge. :-)

      As Notepad++ is a Windows (only) app, let’s try to stick to its (and Windows’) notations when discussing it: Ctrl+X Current Microsoft notation

    • Jhorbam Baena OrozcoJ

      Editar formulas de excel en Notepad

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      8
      0 Votes
      8 Posts
      385 Views
      Chris Martin 1C

      Hola Jhorbam,

      Lo que estás buscando se puede lograr parcialmente en Notepad++ utilizando resaltado de sintaxis personalizado (User Defined Language, UDL). Notepad++ no tiene soporte nativo para fórmulas de Excel, pero puedes crear una definición de lenguaje personalizada que resalte palabras clave como SUMA, PRODUCTO, operadores como +, =, *, (, ), y los signos de dólar $.

      Pasos para hacerlo: Abre Notepad++. Ve a “Lenguaje” → “Definir tu lenguaje…”. Crea un nuevo lenguaje con un nombre como ExcelFormulas. En la pestaña “Palabras clave”, añade funciones de Excel que uses, como SUMA, PRODUCTO, SI, etc. En la pestaña “Operadores y delimitadores”, puedes agregar =, (, ), {, }, $, y otros símbolos. Personaliza los colores de texto para que se parezcan a los del editor de fórmulas de Excel. Guarda tu configuración y aplícala al archivo.

      Esto no será tan avanzado como el editor de fórmulas de Excel, pero puede ayudarte visualmente al copiar y revisar fórmulas extensas.

      También puedes exportar/importar configuraciones si quieres compartir tu UDL con otros.

      Saludos.

    • donhoD

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

      Watching Ignoring Scheduled Pinned Locked Moved Announcements
      24
      1 Votes
      24 Posts
      10k Views
      Lycan ThropeL

      @donho , worked without a hitch or a hiccup. No problems with the update on my Standard Install version.

    • donhoD

      Notepad++ v8.8.3 Release Candidate

      Watching Ignoring Scheduled Pinned Locked Moved Announcements
      38
      6 Votes
      38 Posts
      9k 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
      505 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()"
    • 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
      254 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
      273 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
      2k 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
      541 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).

    • 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
      2k 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
      183 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
      187 Views
      Valery OrlovV

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

    • 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
      190 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
      1k 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
      2k 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
      3k 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
      304 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.

    • Bernard DaninoB

      Keyboard shortcuts from external apps not working

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      3
      0 Votes
      3 Posts
      200 Views
      Bernard DaninoB

      @Ekopalypse said in Keyboard shortcuts from external apps not working:

      @Bernard-Danino

      Right, that’s strange.
      I use Deepl, there is also the shortcut ctrl+c+c and as you can see in this screenshot, it works.

      ebeba1d0-a3b9-47fe-b0c6-147b935d1e4d-{68B7D05B-062A-4BBA-BDD0-5EE32126EC71}.png

      Understood. I passed it on to Reverso. Maybe they have an explanation, although the ticket I opened over there didn’t yield anything. Maybe this new info will get them going.
      Thanks

    • OokerO

      How to use VS Code keymap in Notepad++?

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · · vscode keymap shortcut mapper
      3
      0 Votes
      3 Posts
      3k Views
      N

      Hi, I ran into the same issue.

      I unfortunately don’t have enough time to manually check every single vscode keymapping, but with the courtesy of an LLM I was able to generate a “good enough” shortcut map that has all the functionality I need, which is mostly just alt+up/down and ctrl+/

      https://gist.github.com/nopeless/b18fe37105fd165cd9c637d4a2a2b48b

      Here is the link