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
      105 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
      31
      1 Votes
      31 Posts
      3k Views
      donhoD
      @fml2 Did you check if NppExport.dll is read-only in your system?
    • EkopalypseE

      DAP client plugin

      Watching Ignoring Scheduled Pinned Locked Moved Notepad++ & Plugin Development
      7
      3 Votes
      7 Posts
      232 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
      38 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!
    • smcclosrS

      Inability to save file to OneDrive with 8.9.6 version of Notepad++

      Watching Ignoring Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
      5
      0 Votes
      5 Posts
      324 Views
      PeterJonesP
      @smcclosr said: Not 100% user if this version addressed this specific issue, It almost definitely did not. The changes between 8.9.6 and 8.9.6.1, as announced in the forum and by looking at the git-diff at GitHub, were completely related to vulnerability fixes (COPYDATASTRUCT, removing commandLineInterpreter hidden config file option, and making it harder for saved-Run-menu entries from shortcuts.xml to run apps from non-approved directories), and do not seem in any way related to OneDrive. (And least, I don’t see how any of them could affect saving of files to OneDrive) My guess was the change in v8.9.6 that changed behavior relative to v8.9.5 was the “saving dirty read-only files” fix (but that’s just a guess… and it wasn’t changed/reverted in v8.9.6.1, so that doesn’t seem a plausible explanation for your experience.) but it is resolved for me now. Hopefully it stays that way. Good luck.