• Regex: Find whole words that have only uppercase letters in text

    6
    0 Votes
    6 Posts
    10k Views
    Terry RT
    @Terry-R said in Regex: Find whole words that have only uppercase letters in text: I did some more testing and can see it will fail in some situations. I have had more time to consider how it might work and also to look at “classes”. This next solution is I think working correctly and will also allow for words with a ' in them such as DON’T. Find What:(?-i)\b[[:upper:]](?:[[:upper:]]|')+\b I had to start it with a look for an upper character, otherwise it would select just a ' by itself. You may also want to extend to include a - if you need to. If adding a - then it becomes (?-i)\b[[:upper:]](?:[[:upper:]]|'|-)+\b. Terry [image: 1658263859190-492d7dc6-504f-485b-a76b-1d51461b5f1f-image.png]
  • 0 Votes
    3 Posts
    2k Views
    PeterJonesP
    @CaneAE86 said in Can't open any kind of file if I´ll do right click on them: I try to open with right-click --> notepadd++ https://community.notepad-plus-plus.org/topic/15334/right-click-edit-with-notepad-error https://community.notepad-plus-plus.org/topic/22897/solved-tutorial-shellexecute-failed-2-i-can-use-edit-with-notepad-as-administrator
  • Autocompletion doesn't work properly, what could be the reason?

    4
    0 Votes
    4 Posts
    662 Views
    Terry RT
    @Николай-Долбня said in Autocompletion doesn't work properly, what could be the reason?: It is not obvious for me that Enter could be used for something else during classical autocompletion, but it’s only my oppinion though. I will admit the tab key would not have been my “default” choice but the developer is allowed to select whatever they think is appropriate. It’s up to the user (that’s you) to see the problem and hopefully read the manual to find the reason. Luckily the developer puts in lots of settings that can be changed to suit the users preference. Terry
  • Monokai for Minimalist

    themes dark theme portable
    4
    0 Votes
    4 Posts
    3k Views
    BlitzCoderB
    Thanks Peter for the info. It seems the themes are only associated by filename and so I just copy or rename Monokai to DefaultDarkMode. still looking into Minimalist though, but will transition to the full portable soon.
  • Move Down Current Line doesn't work with Keyboard Shortcut

    3
    0 Votes
    3 Posts
    507 Views
    Jason R MayberryJ
    @Alan-Kilborn I was also using 8.4.3 (sorry about that). Thanks for the guidance. I use Razer headphones, and it turns out that it was the Razer software that was causing the problem. Thought I would share in case any other who had the same problem, and like me weren’t smart enough to figure it out on their own. Also, I’ve used Notepad++ for years (decades?) now, and absolutely love it. Just sent a donation to show my gratitude.
  • Mass Replace while dividing the value

    23
    0 Votes
    23 Posts
    5k Views
    Caddy DC
    @Ekopalypse thank you very much kind sir, it works, have a great and amazing day
  • Notepad ++ disconnects after a while of use (about 4-5 minutes)

    1
    0 Votes
    1 Posts
    470 Views
    No one has replied
  • Tab bar always hidden at launch

    tab bar
    5
    0 Votes
    5 Posts
    2k Views
    PeterJonesP
    @BrendanL79 said in Tab bar always hidden at launch: But right now the erratic tab bar behavior bothers me more If you toggle the Settings > Preferences > General > Tab Bar > ☑ Hide to the checkmarked state, then with or without the asNotepad.xml config file, Notepad++ will start with the tab bar hidden, and opening Settings > Preferences will not cause the tab bar to suddenly appear, making it both consistent and the behavior I believe you want.
  • clipboard in find and replace

    4
    0 Votes
    4 Posts
    717 Views
    Alan KilbornA
    @Сергей-Арсентьев said in clipboard in find and replace: By default, Notepad++ adds the last value from the clipboard to the search Note that this has nothing to do with the clipboard content. Notepad++, if the Don't fill find field... is unticked, will grab either the word at the caret (if no selection is active) or the currently selected text and use it to pre-populate the Find what box in the Find window.
  • Compare 2 folders

    3
    0 Votes
    3 Posts
    22k Views
    Alan KilbornA
    @musicscoree96 said in Compare 2 folders: as for now I used UltraCompare So why stop using it, even if a Notepad++ plugin gives you compare capability? No offense to the developers of the Compare plugin, but I don’t like it much, so I continue to use BeyondCompare. I do my own “integration” with it using some Notepad++ scripts.
  • Default Dictionary

    11
    0 Votes
    11 Posts
    2k Views
    Alan KilbornA
    @Swati-Rohatgi said in Default Dictionary: It is enhancement request And it was officially made HERE. But…I don’t think what you want was made very clear there. Perhaps you want to clarify by writing more there, or at the very least linking back here to this discussion.
  • notepad ++ problem

    2
    1
    0 Votes
    2 Posts
    454 Views
    Terry RT
    @damdini-RANAWEERA said in notepad ++ problem: my note pad++ is not working when I view it on another web page as below. The solution is that you need to write a html file, not a txt file. By the way, this is a free answer, but if you ask anymore html coding questions no-one will help. This is not a Notepad++ issue, it’s a html coding issue so ask these questions in a different forum please. Terry
  • problem printing a selected part of a file

    11
    0 Votes
    11 Posts
    3k Views
    donhoD
    @rdipardo @PeterJones I’ve applied Scintilla fix here: https://github.com/notepad-plus-plus/notepad-plus-plus/pull/11911 But I still can reproduce the bug. Obviously, the bug is not fixed by this commit :(
  • 0 Votes
    14 Posts
    3k Views
    VTGroupGitHubV
    This did work. Thank you again. In case anyone else is interested, I added the following to “C:\Program Files\Notepad++\plugins\PythonScript\scripts\startup.py”: def setTabs(arg): editor.setTabIndents(False) notepad.callback(setTabs, [NOTIFICATION.BUFFERACTIVATED])
  • Apply XSL to view XML file

    4
    0 Votes
    4 Posts
    18k Views
    Kim ClausingK
    I was able to use ther xml tools plug in for notepadd ++. I renamed my xslt to xsl. I opened my xml file that I want to transform. I selected the plugin menu. Then selected xml tools - xsl transformation. In the child window that appears, I select my renamed xsl file.
  • Search Window Double Click Function

    2
    1 Votes
    2 Posts
    455 Views
    PeterJonesP
    @Win-Custom , This sounds like the known issue here (@Yaron can correct me if I’m wrong). If so, it will be fixed in the next revision of Notepad++.
  • Replace extended mode search function

    2
    0 Votes
    2 Posts
    976 Views
    guy038G
    Hello, @mar-hyg, Your post does not seem very clear regarding your goals ! I advice you to read these two posts, below, before replying again ! https://community.notepad-plus-plus.org/topic/21965/please-read-this-before-posting https://community.notepad-plus-plus.org/topic/22022/faq-desk-template-for-search-replace-questions We certainly can help you, but we need further explanations to think about ! Thanks for reading. See you later ! guy038
  • Toggle Markdown Viewer++ plugin on startup

    7
    0 Votes
    7 Posts
    2k Views
    BlitzCoderB
    @rdipardo Yes, I’m also using the portable version. Noted on that, will look into this more. Thanks again for the add. info.
  • Printout with marking

    2
    1
    0 Votes
    2 Posts
    489 Views
    PeterJonesP
    @Hans-Jürgen-L , That issue is being addressed in the official issue tracker.
  • Can't update from the program anymore

    2
    0 Votes
    2 Posts
    420 Views
    PeterJonesP
    @Brian-Owens said in Can't update from the program anymore: why is this It’s explained in the user manual. https://npp-user-manual.org/docs/upgrading/