Skip to content

Commit

Permalink
fix: Tweak overview handlers to exclude unnecessary interceptors
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidz committed Dec 31, 2024
1 parent c850c2a commit a1a2b5d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions resources/config.edn
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,15 @@
elin-alias-run-test-focused-current-testing {:handler elin.handler.test/run-test-under-cursor
:config {:interceptor {:includes [elin.interceptor.test/focus-current-testing]}}}
elin-alias-overview-current-list {:handler elin.handler.evaluate/evaluate-current-list
:config {:interceptor {:includes [elin.interceptor.handler/overview]}}}
:config {:interceptor {:includes [elin.interceptor.handler/overview]
:excludes [elin.interceptor.evaluate/output-eval-result-to-cmdline
elin.interceptor.evaluate/set-eval-result-to-virtual-text
elin.interceptor.evaluate/yank-eval-result]}}}
elin-alias-overview-current-top-list {:handler elin.handler.evaluate/evaluate-current-top-list
:config {:interceptor {:includes [elin.interceptor.handler/overview]}}}}
:config {:interceptor {:includes [elin.interceptor.handler/overview]
:excludes [elin.interceptor.evaluate/output-eval-result-to-cmdline
elin.interceptor.evaluate/set-eval-result-to-virtual-text
elin.interceptor.evaluate/yank-eval-result]}}}}

:initialize {:export {"g:elin_http_server_port" #ref [:http-server :port]}}}

Expand Down

0 comments on commit a1a2b5d

Please sign in to comment.