Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dap-codelldb: Upgrade from v1.6.1 to v1.7.0 #617

Merged
merged 2 commits into from
May 9, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion dap-codelldb.el
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,14 @@
(require 'dap-mode)
(require 'dap-utils)

(defcustom dap-codelldb-extension-version "1.7.0"
"The version of the cpptools vscode extension."
:group 'dap-cpptools
:type 'string)

(defcustom dap-codelldb-download-url
(format "https://github.com/vadimcn/vscode-lldb/releases/download/v1.6.1/codelldb-x86_64-%s.vsix"
(format "https://github.com/vadimcn/vscode-lldb/releases/download/v%s/codelldb-x86_64-%s.vsix"
dap-codelldb-extension-version
(alist-get system-type
'((windows-nt . "windows")
(darwin . "darwin")
Expand Down