• Change.log

    Locked
    4
    0 Votes
    4 Posts
    2k Views
    Suzuna SoumaS

    @decoderman Thanks, reinstalling worked, now it’s not reappearing anymore!

  • Search a textfile

    Locked
    5
    0 Votes
    5 Posts
    2k Views
    Mårten AxelssonM

    Thanks alot guys! =)

  • Display of unicode characters depends on characters around it

    4
    0 Votes
    4 Posts
    2k Views
    Mimo SmilesM

    @gstavi said:

    Did you report it at the issue board?

    A bit late, but I have now: Issue #3749

  • Highlighting syntax

    Locked
    1
    0 Votes
    1 Posts
    962 Views
    No one has replied
  • 0 Votes
    5 Posts
    2k Views
    supplementfacts2S

    Thank you, that solved the problem. I just had to copy and paste my old unsaved files into new unsaved files, and now they’re being created in the new backup folder and backed up by Dropbox.

  • I updated to a new version, and my files are messed up

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    CreepyCreeper516C

    Here is a better one:

    Current One: https://imgur.com/a/wJg75

    What it’s supposed to look like: https://imgur.com/a/b1nYd

    It’s like it’s a different font and it looks like an old version. It’s kind of hard to see unless you make it full screen.

  • "Find Prev" button is missing

    Locked
    1
    1 Votes
    1 Posts
    897 Views
    No one has replied
  • Make folder browser bigger in search and replace

    Locked
    1
    1 Votes
    1 Posts
    820 Views
    No one has replied
  • NumLock switched off when launching Notepad++

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    Scott SumnerS

    @Theo-Fondse

    There is probably a better solution, but until you find it you could script turning Num Lock back on after Notepad++ starts up with the Pythonscript plugin.

    Put the following code in startup.py and make sure Pythonscript’s “Initialisation” option is set to ATSTARTUP (under the Configuration menu option for the Pythonscript plugin). Note that Pythonscript is only 32-bit right now, so it will only work with 32-bit Notepad++.

    I really hope you find a better solution and don’t have to resort to this !! :-D

    If this (or ANY posting on the Notepad++ Community site) is useful, don’t reply with a “thanks”, simply up-vote ( click the ^ in the ^ 0 v area on the right ).

    import ctypes def turn_on_numlock(): VK_NUMLOCK = 0x90 KEYEVENTF_EXTENDEDKEY = 0x01 KEYEVENTF_KEYUP = 0x02 GetKeyState = ctypes.windll.user32.GetKeyState keybd_event = ctypes.windll.user32.keybd_event if not GetKeyState(VK_NUMLOCK): keybd_event(VK_NUMLOCK, 0x45, KEYEVENTF_EXTENDEDKEY | 0, 0) keybd_event(VK_NUMLOCK, 0x45, KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0) turn_on_numlock()
  • Error XRMtools plugin

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Session management in multi-instance mode

    Locked
    1
    0 Votes
    1 Posts
    931 Views
    No one has replied
  • Search text, only in ranges in the line!

    Locked
    5
    0 Votes
    5 Posts
    3k Views
    Nicolas MachadoN

    @Scott-Sumner You are totally right, reg expression are still a mystery for me. I use it in a dummy way, chek email format, numbers. But to me is a pending issue. Thank you very much, you gave me more than I expect.

  • how to set this up

    Locked
    1
    0 Votes
    1 Posts
    861 Views
    No one has replied
  • Syntax sql is not correct

    Locked
    2
    0 Votes
    2 Posts
    1k Views
    cipher-1024C

    This appears to be a bug in Scintilla that has been there since the dawn of time. Coincidentally, this was patched a month ago. The bad news is that it can take a long time before NPP gets a new Scintilla engine. If it’s really vexing you, you could install the Poor Man’s T-Sql Formatter plugin. I think that comes with a custom language definition that doesn’t suffer from the same bug. It does some nifty automatic formatting for you too.

  • Python function list with Notepad ++ v7.4.2

    Locked
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Highlight doesn't work on a clone view of the same file.

    7
    0 Votes
    7 Posts
    4k Views
    Taihai ChenT

    @dail That’s a shame.

  • HOW TO MAKE A SHORTCUTS FOR THIS?

    Locked
    3
    0 Votes
    3 Posts
    2k Views
    Álvaro MeirelesÁ

    Wow,

    Very nice!

    Now I can close the find result using this Script System more one shortcut :D

    Thank you!

  • Changing the background color of the editor window

    Locked
    2
    0 Votes
    2 Posts
    2k Views
    cmeriauxC

    yes,
    in the “Style Configurator” panel, you can chose various theme.

  • pretty print XML by default?

    3
    0 Votes
    3 Posts
    5k Views
    Gogo NeatzaG

    The one line python script is :
    notepad.runPluginCommand(‘XML Tools’, ‘Pretty Print (XML only - with line breaks)’)

  • replace notepad with notepad++

    Locked
    1
    1 Votes
    1 Posts
    2k Views
    No one has replied