Community
    • Login
    1. Home
    2. Popular
    Log in to post
    • All Time
    • Day
    • Week
    • Month
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics

    • All categories
    • Sergey SS

      Please add automatic file saving to the directory

      Watching Ignoring Scheduled Pinned Locked Moved Blogs
      9
      0 Votes
      9 Posts
      109 Views
      Sergey SS
      @PeterJones said: Notepad++ copies the current contents of the file on disk Yes, function “Backup on save” does exactly that, it’s not suitable. I need to save the current version of an open document. I will use third-party software to save a copy of the file on external flash disk to the specified directory on the PC. Writing plugins for Notepad++ is very interesting, but there is absolutely no time for it. Thank you.
    • donhoD

      Notepad++ release 8.9.6.1

      Watching Ignoring Scheduled Pinned Locked Moved Announcements
      33
      1 Votes
      33 Posts
      3k Views
      donhoD
      @xomx The HMAC is only meant to protect against the -settingsDir= & settings on Cloud option vectors where the attacker prepares a malicious directory on a different machine — a USB drive, a downloaded archive, a network share. In that case they genuinely don’t know the victim’s MachineGUID and cannot forge the HMAC.
    • EkopalypseE

      DAP client plugin

      Watching Ignoring Scheduled Pinned Locked Moved Notepad++ & Plugin Development
      7
      3 Votes
      7 Posts
      236 Views
      EkopalypseE
      @Lycan-Thrope you bring me a new feature to try and work into the package I’m sooorrrryyy :D get up to speed on this DAP and In short, it is essentially a “standard” for how an application should communicate with a debugger. The communication itself takes place via JSON with a header section and is transmitted either via stdio or TCP. Each side can send a request, which must be answered by the other side with a response, and in addition, both sides can send events, which are simply pieces of information that do not require a response. It looks like this Content-Length: 139 {"seq":29,"type":"event","event":"stopped","body":{"allThreadsStopped":true,"hitBreakpointIds":[1],"reason":"breakpoint","threadId":13008}} Content-Length: 46 {"command":"threads","type":"request","seq":9} Content-Length: 180 {"seq":30,"type":"response","request_seq":9,"success":true,"command":"threads","body":{"threads":[{"id":10932,"name":"2: tid=10932 \"\""},{"id":13008,"name":"1: tid=13008 \"\""}]}} Content-Length: 47 So, to make your dbase debugger dap-compatible, you need to wrap it in this layer and interpret it: In the previous example, the client asks: Which threads are currently running? And the dbase adapter would then have to convert this into dbase debugger commands and return the result wrapped in JSON. Of course, not all debuggers can support every feature, which is where capabilities come into play. Before the actual debugging begins, the client and the debug-adapter exchange information about what each is capable of, and only the appropriate requests should be used thereafter. along with all the IRL chores I have to get done this season Those are exactly the things that keep holding me back. I have no idea who came up with them, but… can’t we just fire that person? I mean, obviously I’m not the only one this affects. :-D
    • rednoise0R

      Jump List not being added to

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      3
      0 Votes
      3 Posts
      111 Views
      PeterJonesP
      @rednoise0 , It works with 64-bit for me. I think jump list is mostly in the Windows side of things, so my guess is it’s on the OS’s end, maybe in the way you uninstalled vs installed, or some such. Update: You might want to read the results of recent research I did in this jump list related issue in the repo: https://github.com/notepad-plus-plus/notepad-plus-plus/issues/17948#issuecomment-4246404470 It should give you some things to look for to figure out if Windows is trying to update the jump list or not
    • BernardB

      Folder in Workspace Click on Line Containing File Name

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      1
      0 Votes
      1 Posts
      40 Views
      No one has replied
    • EvgenyVenalainenE

      UDL keywords do not work for Cyrillic letters at encoding other than ANSI or UTF

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      3
      3
      0 Votes
      3 Posts
      62 Views
      EvgenyVenalainenE
      @peterjones Yes, mostly the issue is for end user. Thanks for complete explanation!