[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/dape 95d52ea585 044/123: Fix parsing of codelldb adapte
From: |
ELPA Syncer |
Subject: |
[elpa] externals/dape 95d52ea585 044/123: Fix parsing of codelldb adapter output on windows #1 |
Date: |
Tue, 5 Dec 2023 03:57:59 -0500 (EST) |
branch: externals/dape
commit 95d52ea58562d322e8450af67e6cb93fbd196cde
Author: Daniel Pettersson <daniel@dpettersson.net>
Commit: Daniel Pettersson <daniel@dpettersson.net>
Fix parsing of codelldb adapter output on windows #1
For some reason Dape is unable to find start of json under windows
when using codelldb. It seams unlikely to be an codelldb issue.
---
dape.el | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/dape.el b/dape.el
index c3e2b039d1..cf5e6ee520 100644
--- a/dape.el
+++ b/dape.el
@@ -439,9 +439,10 @@ If EXTENDED end of line is after newline."
;;; Process and parsing
+;; HACK Issue #1 for some reason \r is not inserted into the parse
+;; buffer by codelldb on windows. No trace in source code.
(defconst dape--content-length-re
- "\\(?:.*: .*\r\n\\)*Content-Length: \
-*\\([[:digit:]]+\\)\r\n\\(?:.*: .*\r\n\\)*\r\n"
+ "Content-Length: \\([[:digit:]]+\\)\r?\n\r?\n"
"Matches debug adapter protocol header.")
(defun dape--debug (type string &rest objects)
- [elpa] externals/dape 813ace9e69 033/123: Fix vector options eval, (continued)
- [elpa] externals/dape 813ace9e69 033/123: Fix vector options eval, ELPA Syncer, 2023/12/05
- [elpa] externals/dape e804aca510 008/123: Readme fixups, ELPA Syncer, 2023/12/05
- [elpa] externals/dape b7f68f1b96 021/123: Update readme with a bit more helpful path example, ELPA Syncer, 2023/12/05
- [elpa] externals/dape c7c085a94a 012/123: Added roadmap, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 2376cf5400 010/123: Resolve symbols in config evaluation, ELPA Syncer, 2023/12/05
- [elpa] externals/dape ed37a0cd5b 025/123: Add exception breakpoints, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 8418a68442 026/123: Fix repl faces, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 815a880f48 027/123: Rename dape input vars, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 4eb75e39b2 031/123: Small readme fixup, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 04aabf1862 041/123: Update screenshots, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 95d52ea585 044/123: Fix parsing of codelldb adapter output on windows #1,
ELPA Syncer <=
- [elpa] externals/dape 3d800b349e 045/123: Add godot example config, ELPA Syncer, 2023/12/05
- [elpa] externals/dape b42b7def86 046/123: Fix timers when repl buffer is not available, ELPA Syncer, 2023/12/05
- [elpa] externals/dape efcfc93003 047/123: Fix duplicate variable overlays, ELPA Syncer, 2023/12/05
- [elpa] externals/dape cacddbb8e7 057/123: Improve error printout and do a better job of validating config, ELPA Syncer, 2023/12/05
- [elpa] externals/dape ccb6060b55 067/123: Add disconnect functionality and PID helper for attach requests, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 6da668abc4 009/123: Fix themes link in readme, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 6c501bfbc9 004/123: Fix watch dwim use symbol at point, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 96b1815ed3 001/123: Initial commit, ELPA Syncer, 2023/12/05
- [elpa] externals/dape a21992c208 002/123: Add screenshot, ELPA Syncer, 2023/12/05
- [elpa] externals/dape 6907fade6a 003/123: Fixup readme, ELPA Syncer, 2023/12/05