master
bqv 2 years ago
parent 0acf910bee
commit 6028a22ce2
No known key found for this signature in database
GPG Key ID: 9E2FF3BDEBDFC910

@ -29,5 +29,6 @@
(eval . (setq-local tags-table-list (expand-file-name ".git/tags" (projectile-project-root))))
(flycheck-clang-warnings . ("all" "extra" "error-implicit-function-declaration" "no-missing-field-initializers"))
(flycheck-clang-language-standard . "c++20")
(flycheck-checker . c/c++-clang)
;(flycheck-checker . c/c++-clang)
(flycheck-checker . lsp)
(projectile-project-compilation-cmd . "bear -- make -j8")))

@ -1,12 +1,12 @@
(let ((vterm-shell "/bin/sh -c 'trap \"\" SIGINT ; read < /dev/zero'"))
(with-current-buffer (vterm t)
(let ((process (get-buffer-process (current-buffer))))
(unless (boundp 'gud-comint-buffer)
(unless (and (boundp 'gud-comint-buffer) gud-comint-buffer)
(gdb (string-join `("gdb" "-i=mi"
"-ex 'handle SIGPIPE nostop noprint pass'"
,(concat "--args weechat -a -P 'alias,buflist,exec,irc' -r '/plugin load "
,(concat "--args weechat -a -P alias,buflist,exec,irc,"
(expand-file-name "xmpp.so" (projectile-project-root))
"'; /debug tags"))
"; /debug tags"))
" ")))
(dolist (line
(list (concat "tty " (process-tty-name process))

Loading…
Cancel
Save