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

lisp-mode: broadcast eval #1521

Merged
merged 19 commits into from
Sep 7, 2024
Merged
Show file tree
Hide file tree
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
Prev Previous commit
Next Next commit
extract ext/
  • Loading branch information
cxxxr committed Sep 7, 2024
commit e6821654a8ae4e88ea982ef7eeabc7a4953a52a6
File renamed without changes.
File renamed without changes.
File renamed without changes.
47 changes: 25 additions & 22 deletions extensions/lisp-mode/lem-lisp-mode.asd
Original file line number Diff line number Diff line change
Expand Up @@ -11,41 +11,44 @@
"lem-lsp-mode")
:serial t
:components ((:file "test-api")
(:file "exporter")
(:file "errors")
(:file "ui-mode")
(:file "micros-protocol")
(:file "connections")
(:file "message-dispatcher")
(:file "ui-mode")
(:file "grammar")
(:file "implementation")
(:file "internal-package")
(:file "completion")
(:file "message")
(:file "detective")
(:file "file-conversion")

(:file "ext/detective")
(:file "ext/completion")

(:file "lisp-mode")
(:file "message-definitions")
(:file "repl")
(:file "inspector")
(:file "eval")
(:file "sldb")
(:file "hyperspec")
(:file "apropos-mode")
(:file "autodoc")
(:file "paren-coloring")
(:file "defstruct-to-defclass")
(:file "quickdocs")
(:file "package-inferred-system")
(:file "organize-imports")
(:file "connection-list")
(:file "self-insert-hook")
(:file "trace")
(:file "class-browser")
(:file "macroexpand")
(:file "test-runner")
(:file "utopian")
(:file "highlight")

(:file "ext/exporter")
(:file "ext/inspector")
(:file "ext/eval")
(:file "ext/sldb")
(:file "ext/hyperspec")
(:file "ext/autodoc")
(:file "ext/paren-coloring")
(:file "ext/defstruct-to-defclass")
(:file "ext/quickdocs")
(:file "ext/package-inferred-system")
(:file "ext/organize-imports")
(:file "ext/connection-list")
(:file "ext/self-insert-hook")
(:file "ext/trace")
(:file "ext/class-browser")
(:file "ext/macroexpand")
(:file "ext/test-runner")
(:file "ext/utopian")
(:file "ext/highlight")
(:file "package")))

(defsystem "lem-lisp-mode/v2"
Expand Down
5 changes: 3 additions & 2 deletions extensions/lisp-mode/lisp-mode.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,9 @@
:label "Export symbol"
:callback (lambda (&rest args)
(declare (ignore args))
(lem-lisp-mode/exporter:lisp-add-export
(symbol-string-at-point point)))))))
(uiop:symbol-call :lem-lisp-mode/exporter
lisp-add-export
(symbol-string-at-point point)))))))

(defun context-menu-browse-class-as-tree ()
(let ((point (point-over-symbol-with-menu-opened-p)))
Expand Down