• App scaling in 4K Resolution

    Locked
    2
    0 Votes
    2 Posts
    3k Views
    Claudia FrankC
    @Stephanus-Schoeman you can enable big icon or use the plugin Customize Toolbar, although I’m not sure how it does handle 4K resolution, and you can use your own set of icons by following this way. [image: 7kQBazl.png] Cheers Claudia
  • Option to Add X number of spaces after a parenthesis or square bracket

    2
    0 Votes
    2 Posts
    3k Views
    Gogo NeatzaG
    Yes, there is such an option. The option is called ‘Macro’. You can find it in the Notepad++ main menu between ‘Tools’ and ‘Run’. Macro - Start Recording would be a good starting point. Have fun !
  • How to disable all popup messages for another files?

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    User NameU
    I can’t work in notepad++! Always popup messages for another files, but i don’t want see this! I want to see this messages only for selected(current opened) file! Need disable ‘RELOAD’ and ‘KEEP’ messages for another files! (For updated files: Silent update. For deleted: keep opened) Show this messages only for editing file(currently opened)
  • How to turn off auto-highlight on single click?

    Locked settings highlighting
    4
    0 Votes
    4 Posts
    6k Views
    Claudia FrankC
    @Mark-Bratcher I assume smart highlighting is what you are looking for [image: 5cEaSMh.png] Cheers Claudia
  • Backwards slash doesn't escape backtick in javascript

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    Claudia FrankC
    @Dallas-Fischer npp uses scintilla as its highlighting engine. If you think this is an bug you might open a request here. Be sure to check if it hasn’t been already opened. Cheers Claudia
  • Page layout definitions

    Locked
    3
    0 Votes
    3 Posts
    5k Views
    Charles BillowC
    OK, thanks.
  • Can't initialize plugins directory

    5
    0 Votes
    5 Posts
    6k Views
    PeterJonesP
    If you use the portable (zip-file) version, it doesn’t register itself with Windows, so Windows doesn’t automatically list it for choosing with “Open With…” or similar. However, under most versions of Windows, you can select “browse” in the “Open With” dialog, and go find notepad++.exe yourself. Or, if you are an advanced user, you can edit your association(s) in your registry. (For example, in mine, HKCR\.txt\ uses the (Default) string value with data txtfile, and HKCR\txtfile\Shell\open\command\ uses the (Default) string value of my full path for notepad++.exe. If you don’t understand any of those terms in these parentheses, you probably should be wary of editing your registry yourself.)
  • is "find in files" way too slow?

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    gstaviG
    I don’t know abot the “way too” but it is “slow”. Was discussed many times. For example here.
  • Searchin with wildcards

    Locked search pattern
    2
    0 Votes
    2 Posts
    13k Views
    guy038G
    Hi, @fernando-conti, Very easy with regular expressions, indeed ! Open your file, in Notepad++ Move back at the very beginning ( CTRL + Origin ) Open the Find / Replace dialog ( Ctrl + H ) Check the Regular expression search mode Check, if necessary, the Match case option In the Find what: zone, type the regex \[.+?\] In the Replace with: zone, simply type the text that must replace all the [......] zones or leave it empty if you prefer to delete the [......] zones Click on the Replace All button Et voilà, Notes : As the symbols [ and ] have special meaning in regular expressions, they have to be escaped, both, to be considered as literal characters The part .+? stands for the smallest range of characters, between the symbols [ and ] For instance, given the example text, below : This is a [123] test for searching [abc] all the [.......] zones ! The regex : SEARCH \[.+?\] REPLACE Leave EMPTY modifies the text as below : This is a test for searching all the zones ! If the regex was \[.+\], it would have select the largest zone between the symbols [ and ], that it to say, the string “[123] test for searching [abc] all the [.......]”, in our example. Certainly not what you’re looking for ! Best Regards, guy038
  • Comparing Files

    Locked
    3
    0 Votes
    3 Posts
    3k Views
    Robert DerivanR
    Thanks Claudia. I’ll give it a try.
  • any way (plugin etc) to encrypt a file?

    Locked
    2
    0 Votes
    2 Posts
    4k Views
    Meta ChuhM
    @patrickdrd yes you just need to install the nppcrypt plugin this will allow you to select your desired algorithm and passphrase to encrypt or decrypt any file or any selected text within a file you can install it by downloading it here: https://github.com/jeanpaulrichter/nppcrypt or via the plugin manager if you have installed it
  • How to extend notepad++ API to use in WPF application

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Enable Page Up/Down please!

    Locked scroll pages
    2
    0 Votes
    2 Posts
    3k Views
    Scott SumnerS
    @Rowan-Sylvester-Bradley183 Page up/down functionality works for me. Check your Shortcut Mapper (on Settings menu) as a first step to troubleshoot this. Here’s what mine looks like: [image: 7fGx85B.jpg]
  • BAT file (Dos files) not working after install notpad++

    Locked dos file bat file
    3
    0 Votes
    3 Posts
    3k Views
    decodermanD
    @Muhammad-Ahmad You must have associated *.bat files with another program or maybe even NPP? See here how to reset it: https://superuser.com/questions/53948/how-do-i-restore-bat-files-association-with-the-system-make-them-run-when-doub Or maybe this if above does not solve it: https://social.technet.microsoft.com/Forums/windows/en-US/fc2ca91d-5509-4c9b-92a5-5af19375e361/lost-bat-file-association?forum=w7itprogeneral You may have to restart Windows for this to take effect.
  • default file save to all files?

    Locked
    5
    0 Votes
    5 Posts
    4k Views
    patrickdrdP
    correct! thanks a lot!
  • Editing Windows 10 registry entris

    3
    0 Votes
    3 Posts
    6k Views
    PeterJonesP
    As @decoderman said, you cannot edit it directly. However, you can run regedit (Registry Editor) Select the appropriate registry entry, or hierarchy level File | Export > File name = blah.reg Open blah.reg in Notepad++ Edit the text save exit Either In file explorer, double-click on blah.reg to auto-import it or, in RegEdit, File | Import > File name = blah.reg However, some registry edits require further action (like a reboot) to take effect. If you already have the .reg file, you can just edit it directly in Notepad++, and then follow the Either-instructions to bring it into the active registry. WARNING: If this wasn’t intuitively obvious to you to begin with – if anything I said above came as new information (e.g., if you didn’t already know how to export/import .reg files or if you didn’t already know that .reg files were text files so could be edited directly with a text editor like Notepad++) – I would then strongly caution you against manual registry edits, because editing your registry is something to be done only if you know what you’re doing, and can cause your system to stop working. Use these instructions at your own risk. I make no warranty, express or implied.
  • Where to send .dmp file upon crash?

    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC
    @Mark-Beiley95 I would say here https://github.com/notepad-plus-plus/notepad-plus-plus/issues with a description how it happened and if it is reproducible or not. Cheers Claudia
  • The fold character is displayed on the wrong line

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Michael DannerM
    Complement: When I delete the first opening bracket “{” and re-enter it, the fold is displayed correctly.
  • What is the Notepad++ file size limit?

    6
    0 Votes
    6 Posts
    106k Views
    carehartC
    One more followup, and perhaps it’s obvious to some readers. But now that the 64-bit version of NP++ is available, I got that and it had no trouble opening the larger file. Hope that may help some other readers.
  • comparison in notepad++ 7.5.1

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Claudia FrankC
    @Kuldeep-Ghorpade install compare plugin - open two files and press compare under plugin-compare menu. Cheers Claudia