├── .dir-locals.el ├── .dockerignore ├── .envrc ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab └── test-job.gitlab-ci.yml ├── .gitmodules ├── Dockerfile ├── LICENSE ├── README.md ├── breeze.asd ├── data └── default-capture-template.lisp ├── docs ├── .gitignore ├── Notes-slimv.txt ├── aartaka.org ├── breeze_on_the_internets.org ├── breeze_s_eval_v_s_sly_s_and_slime_s_eval.org ├── brightlight-green.css ├── bugs.txt ├── case_with_correction_suggestion.org ├── change_impact_analysis.org ├── contributing.org ├── debug_adapter_protocol.org ├── design_decisions.org ├── e_graphs.org ├── eclector.org ├── editor_integrations.org ├── elpy.org ├── emacs_eat_emulate_a_terminal.org ├── emacs_eglot.org ├── emacs_integration.org ├── error_recovery.org ├── examples_of_code_that_is_not_handled_correctly_by_slime_and_sly.org ├── faq_from_newbies_about_common_lisp.org ├── fast_incremental_peg_parsing.org ├── features.org ├── file_watching.org ├── flymake.org ├── formatting_code.org ├── getting_started.org ├── glossary.org ├── goals.org ├── helping_with_setting_up_slime_for_remote_sessions.org ├── ideas.org ├── improve_cl_docstring_s_at_runtime.org ├── inbox.org ├── index.org ├── introduction.org ├── jedi.org ├── language_server_protocol.org ├── links_to_some_dependencies_documentation.org ├── linting_asd_files.org ├── listener_features.org ├── missing_documentation.org ├── neovim.org ├── parse_files_with_conflicts.org ├── parsing_common_lisp.org ├── pattern_matching.org ├── programming_with_holes.org ├── reader-macros.org ├── roadmap.org ├── rust_analyzer_blog.org ├── silimar_projects.org ├── slimv.org ├── sly_slime_integration.org ├── style.css ├── support_for_bug_reports.org ├── support_for_tests.org ├── syntax_highlighting.org ├── tags.org ├── task-generate_web_pages_from_org_files_in_docs.org ├── tasks.org ├── testing-breeze.org └── visual_studio_code_integration.org ├── emacs ├── breeze-autoloads.el └── breeze.el ├── githooks └── pre-commit ├── makefile ├── scratch-files ├── abstract-symbolic.lisp ├── breeze+parachute.lisp ├── bundle.lisp ├── definition.lisp ├── edit-distance.lisp ├── fancy-emacs-buffers.el ├── fsa.lisp ├── function-fingerprinting.lisp ├── html.lisp ├── indentation.lisp ├── inspector.lisp ├── macroexpand.lisp ├── metadata.lisp ├── notes │ ├── compilation-error-regexp.txt │ ├── error-system-loadedp.txt │ ├── function-redefinition.lisp │ ├── lint.lisp │ └── strutural-editing.lisp ├── parse-everything.lisp ├── piece-table-tests.lisp ├── piece-table.lisp ├── quicklisp.lisp ├── randomized-testing.lisp ├── refactor-scratch.lisp ├── remote-loading.el ├── remote-loading.lisp ├── server.lisp ├── snippet-server.lisp ├── snippets.lisp ├── structural-editing.el ├── syntax-tree.lisp ├── temporary-buffer.el ├── test-runner.lisp ├── test.lisp ├── try-context-menu-mode.el ├── try-docparser.lisp ├── ultra.lisp ├── unix-socket.el ├── user-test.lisp ├── user.lisp ├── utils.lisp ├── wip-find-missing-tests.lisp ├── worker.lisp ├── xref-test.lisp └── xref.lisp ├── scripts ├── animate.sh ├── better-trace.lisp ├── compile.sh ├── demo │ ├── demo-recorder.sh │ ├── demo.el │ ├── demo.lisp │ ├── demo.org │ └── setup-demo.lisp ├── doc.sh ├── emacs-director.patch ├── ignore-words.txt ├── load-dependencies.lisp ├── manifest-abcl.scm ├── manifest-ecl.scm ├── manifest-sbcl.scm ├── manifest.scm ├── org-publish-project.el ├── profile-loading.lisp ├── quicklisp.lisp ├── run-tests.lisp ├── setup-quicklisp.lisp ├── test-abcl.sh ├── test-ccl.sh ├── test-clasp.sh ├── test-ecl.sh ├── test-pedantic.sh └── test-sbcl.sh ├── src ├── +parachute.lisp ├── analysis.lisp ├── asdf.lisp ├── breeze.lisp ├── buffer.lisp ├── channel.lisp ├── cl-todo.lisp ├── cl.lisp ├── class-utils.lisp ├── cmds │ ├── +quickproject.lisp │ ├── blueprint.lisp │ ├── capture.lisp │ ├── command-utils.lisp │ ├── completion.lisp │ ├── editing.lisp │ ├── egraph-command.lisp │ ├── invert.lisp │ ├── other-files.lisp │ ├── package-commands.lisp │ ├── project.lisp │ ├── quicklisp.lisp │ └── test-commands.lisp ├── command.lisp ├── configuration.lisp ├── doctor.lisp ├── documentation.lisp ├── dogfood │ └── dogfood.lisp ├── egraph.lisp ├── ensure-breeze.lisp ├── generics.lisp ├── indirection.lisp ├── lint.lisp ├── listener.lisp ├── logging.lisp ├── package.lisp ├── parser │ ├── incremental-parser.lisp │ ├── parse-tree.lisp │ ├── parser-state.lisp │ └── parser.lisp ├── pattern │ ├── compile-pattern.lisp │ ├── iterator.lisp │ ├── match.lisp │ ├── pattern.lisp │ ├── rewrite.lisp │ └── substitution.lisp ├── range.lisp ├── refactor.lisp ├── report.lisp ├── string-utils.lisp ├── suggestion.lisp ├── test-file.lisp ├── thread.lisp ├── utils.lisp ├── workspace.lisp └── xref.lisp ├── tests ├── analysis.lisp ├── buffer.lisp ├── channel.lisp ├── cmds │ └── other-files.lisp ├── command.lisp ├── conditions.lisp ├── documentation.lisp ├── dummy-package.lisp ├── egraph.lisp ├── emacs │ ├── breeze-test.el │ ├── breeze.erts │ ├── dot-emacs.d │ │ ├── early-init.el │ │ └── init.el │ ├── no-listener.el │ ├── test-straight.el │ └── wip-demo.el ├── incremental-reader.lisp ├── iterator.lisp ├── lint.lisp ├── listener.lisp ├── logging.lisp ├── main.lisp ├── package-commands.lisp ├── package.lisp ├── parse-tree.lisp ├── parser.lisp ├── parser.randomized.lisp ├── pattern │ ├── compile-pattern.lisp │ ├── match.lisp │ ├── pattern.lisp │ ├── rewrite.lisp │ └── substitution.lisp ├── refactor.lisp ├── report.lisp ├── string-utils.lisp ├── utils.lisp ├── workspace.lisp └── xref.lisp ├── workbench.el └── workbench.lisp /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/.dockerignore -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/.envrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/test-job.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/.gitlab/test-job.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/README.md -------------------------------------------------------------------------------- /breeze.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/breeze.asd -------------------------------------------------------------------------------- /data/default-capture-template.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/data/default-capture-template.lisp -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | org-roam.db -------------------------------------------------------------------------------- /docs/Notes-slimv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/Notes-slimv.txt -------------------------------------------------------------------------------- /docs/aartaka.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/aartaka.org -------------------------------------------------------------------------------- /docs/breeze_on_the_internets.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/breeze_on_the_internets.org -------------------------------------------------------------------------------- /docs/breeze_s_eval_v_s_sly_s_and_slime_s_eval.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/breeze_s_eval_v_s_sly_s_and_slime_s_eval.org -------------------------------------------------------------------------------- /docs/brightlight-green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/brightlight-green.css -------------------------------------------------------------------------------- /docs/bugs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/bugs.txt -------------------------------------------------------------------------------- /docs/case_with_correction_suggestion.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/case_with_correction_suggestion.org -------------------------------------------------------------------------------- /docs/change_impact_analysis.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/change_impact_analysis.org -------------------------------------------------------------------------------- /docs/contributing.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/contributing.org -------------------------------------------------------------------------------- /docs/debug_adapter_protocol.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/debug_adapter_protocol.org -------------------------------------------------------------------------------- /docs/design_decisions.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/design_decisions.org -------------------------------------------------------------------------------- /docs/e_graphs.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/e_graphs.org -------------------------------------------------------------------------------- /docs/eclector.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/eclector.org -------------------------------------------------------------------------------- /docs/editor_integrations.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/editor_integrations.org -------------------------------------------------------------------------------- /docs/elpy.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/elpy.org -------------------------------------------------------------------------------- /docs/emacs_eat_emulate_a_terminal.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/emacs_eat_emulate_a_terminal.org -------------------------------------------------------------------------------- /docs/emacs_eglot.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/emacs_eglot.org -------------------------------------------------------------------------------- /docs/emacs_integration.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/emacs_integration.org -------------------------------------------------------------------------------- /docs/error_recovery.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/error_recovery.org -------------------------------------------------------------------------------- /docs/examples_of_code_that_is_not_handled_correctly_by_slime_and_sly.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/examples_of_code_that_is_not_handled_correctly_by_slime_and_sly.org -------------------------------------------------------------------------------- /docs/faq_from_newbies_about_common_lisp.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/faq_from_newbies_about_common_lisp.org -------------------------------------------------------------------------------- /docs/fast_incremental_peg_parsing.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/fast_incremental_peg_parsing.org -------------------------------------------------------------------------------- /docs/features.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/features.org -------------------------------------------------------------------------------- /docs/file_watching.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/file_watching.org -------------------------------------------------------------------------------- /docs/flymake.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/flymake.org -------------------------------------------------------------------------------- /docs/formatting_code.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/formatting_code.org -------------------------------------------------------------------------------- /docs/getting_started.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/getting_started.org -------------------------------------------------------------------------------- /docs/glossary.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/glossary.org -------------------------------------------------------------------------------- /docs/goals.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/goals.org -------------------------------------------------------------------------------- /docs/helping_with_setting_up_slime_for_remote_sessions.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/helping_with_setting_up_slime_for_remote_sessions.org -------------------------------------------------------------------------------- /docs/ideas.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/ideas.org -------------------------------------------------------------------------------- /docs/improve_cl_docstring_s_at_runtime.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/improve_cl_docstring_s_at_runtime.org -------------------------------------------------------------------------------- /docs/inbox.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/inbox.org -------------------------------------------------------------------------------- /docs/index.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/index.org -------------------------------------------------------------------------------- /docs/introduction.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/introduction.org -------------------------------------------------------------------------------- /docs/jedi.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/jedi.org -------------------------------------------------------------------------------- /docs/language_server_protocol.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/language_server_protocol.org -------------------------------------------------------------------------------- /docs/links_to_some_dependencies_documentation.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/links_to_some_dependencies_documentation.org -------------------------------------------------------------------------------- /docs/linting_asd_files.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/linting_asd_files.org -------------------------------------------------------------------------------- /docs/listener_features.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/listener_features.org -------------------------------------------------------------------------------- /docs/missing_documentation.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/missing_documentation.org -------------------------------------------------------------------------------- /docs/neovim.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/neovim.org -------------------------------------------------------------------------------- /docs/parse_files_with_conflicts.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/parse_files_with_conflicts.org -------------------------------------------------------------------------------- /docs/parsing_common_lisp.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/parsing_common_lisp.org -------------------------------------------------------------------------------- /docs/pattern_matching.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/pattern_matching.org -------------------------------------------------------------------------------- /docs/programming_with_holes.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/programming_with_holes.org -------------------------------------------------------------------------------- /docs/reader-macros.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/reader-macros.org -------------------------------------------------------------------------------- /docs/roadmap.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/roadmap.org -------------------------------------------------------------------------------- /docs/rust_analyzer_blog.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/rust_analyzer_blog.org -------------------------------------------------------------------------------- /docs/silimar_projects.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/silimar_projects.org -------------------------------------------------------------------------------- /docs/slimv.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/slimv.org -------------------------------------------------------------------------------- /docs/sly_slime_integration.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/sly_slime_integration.org -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/style.css -------------------------------------------------------------------------------- /docs/support_for_bug_reports.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/support_for_bug_reports.org -------------------------------------------------------------------------------- /docs/support_for_tests.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/support_for_tests.org -------------------------------------------------------------------------------- /docs/syntax_highlighting.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/syntax_highlighting.org -------------------------------------------------------------------------------- /docs/tags.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/tags.org -------------------------------------------------------------------------------- /docs/task-generate_web_pages_from_org_files_in_docs.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/task-generate_web_pages_from_org_files_in_docs.org -------------------------------------------------------------------------------- /docs/tasks.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/tasks.org -------------------------------------------------------------------------------- /docs/testing-breeze.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/testing-breeze.org -------------------------------------------------------------------------------- /docs/visual_studio_code_integration.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/docs/visual_studio_code_integration.org -------------------------------------------------------------------------------- /emacs/breeze-autoloads.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/emacs/breeze-autoloads.el -------------------------------------------------------------------------------- /emacs/breeze.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/emacs/breeze.el -------------------------------------------------------------------------------- /githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/githooks/pre-commit -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/makefile -------------------------------------------------------------------------------- /scratch-files/abstract-symbolic.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/abstract-symbolic.lisp -------------------------------------------------------------------------------- /scratch-files/breeze+parachute.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/breeze+parachute.lisp -------------------------------------------------------------------------------- /scratch-files/bundle.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/bundle.lisp -------------------------------------------------------------------------------- /scratch-files/definition.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/definition.lisp -------------------------------------------------------------------------------- /scratch-files/edit-distance.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/edit-distance.lisp -------------------------------------------------------------------------------- /scratch-files/fancy-emacs-buffers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/fancy-emacs-buffers.el -------------------------------------------------------------------------------- /scratch-files/fsa.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/fsa.lisp -------------------------------------------------------------------------------- /scratch-files/function-fingerprinting.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/function-fingerprinting.lisp -------------------------------------------------------------------------------- /scratch-files/html.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/html.lisp -------------------------------------------------------------------------------- /scratch-files/indentation.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/indentation.lisp -------------------------------------------------------------------------------- /scratch-files/inspector.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/inspector.lisp -------------------------------------------------------------------------------- /scratch-files/macroexpand.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/macroexpand.lisp -------------------------------------------------------------------------------- /scratch-files/metadata.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/metadata.lisp -------------------------------------------------------------------------------- /scratch-files/notes/compilation-error-regexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/notes/compilation-error-regexp.txt -------------------------------------------------------------------------------- /scratch-files/notes/error-system-loadedp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/notes/error-system-loadedp.txt -------------------------------------------------------------------------------- /scratch-files/notes/function-redefinition.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/notes/function-redefinition.lisp -------------------------------------------------------------------------------- /scratch-files/notes/lint.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/notes/lint.lisp -------------------------------------------------------------------------------- /scratch-files/notes/strutural-editing.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/notes/strutural-editing.lisp -------------------------------------------------------------------------------- /scratch-files/parse-everything.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/parse-everything.lisp -------------------------------------------------------------------------------- /scratch-files/piece-table-tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/piece-table-tests.lisp -------------------------------------------------------------------------------- /scratch-files/piece-table.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/piece-table.lisp -------------------------------------------------------------------------------- /scratch-files/quicklisp.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/quicklisp.lisp -------------------------------------------------------------------------------- /scratch-files/randomized-testing.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/randomized-testing.lisp -------------------------------------------------------------------------------- /scratch-files/refactor-scratch.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/refactor-scratch.lisp -------------------------------------------------------------------------------- /scratch-files/remote-loading.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/remote-loading.el -------------------------------------------------------------------------------- /scratch-files/remote-loading.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/remote-loading.lisp -------------------------------------------------------------------------------- /scratch-files/server.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/server.lisp -------------------------------------------------------------------------------- /scratch-files/snippet-server.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/snippet-server.lisp -------------------------------------------------------------------------------- /scratch-files/snippets.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/snippets.lisp -------------------------------------------------------------------------------- /scratch-files/structural-editing.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/structural-editing.el -------------------------------------------------------------------------------- /scratch-files/syntax-tree.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/syntax-tree.lisp -------------------------------------------------------------------------------- /scratch-files/temporary-buffer.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/temporary-buffer.el -------------------------------------------------------------------------------- /scratch-files/test-runner.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/test-runner.lisp -------------------------------------------------------------------------------- /scratch-files/test.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/test.lisp -------------------------------------------------------------------------------- /scratch-files/try-context-menu-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/try-context-menu-mode.el -------------------------------------------------------------------------------- /scratch-files/try-docparser.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/try-docparser.lisp -------------------------------------------------------------------------------- /scratch-files/ultra.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/ultra.lisp -------------------------------------------------------------------------------- /scratch-files/unix-socket.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/unix-socket.el -------------------------------------------------------------------------------- /scratch-files/user-test.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/user-test.lisp -------------------------------------------------------------------------------- /scratch-files/user.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/user.lisp -------------------------------------------------------------------------------- /scratch-files/utils.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/utils.lisp -------------------------------------------------------------------------------- /scratch-files/wip-find-missing-tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/wip-find-missing-tests.lisp -------------------------------------------------------------------------------- /scratch-files/worker.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/worker.lisp -------------------------------------------------------------------------------- /scratch-files/xref-test.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/xref-test.lisp -------------------------------------------------------------------------------- /scratch-files/xref.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scratch-files/xref.lisp -------------------------------------------------------------------------------- /scripts/animate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/animate.sh -------------------------------------------------------------------------------- /scripts/better-trace.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/better-trace.lisp -------------------------------------------------------------------------------- /scripts/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/compile.sh -------------------------------------------------------------------------------- /scripts/demo/demo-recorder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/demo/demo-recorder.sh -------------------------------------------------------------------------------- /scripts/demo/demo.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/demo/demo.el -------------------------------------------------------------------------------- /scripts/demo/demo.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/demo/demo.lisp -------------------------------------------------------------------------------- /scripts/demo/demo.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/demo/demo.org -------------------------------------------------------------------------------- /scripts/demo/setup-demo.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/demo/setup-demo.lisp -------------------------------------------------------------------------------- /scripts/doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/doc.sh -------------------------------------------------------------------------------- /scripts/emacs-director.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/emacs-director.patch -------------------------------------------------------------------------------- /scripts/ignore-words.txt: -------------------------------------------------------------------------------- 1 | upto 2 | falsy 3 | dum 4 | isnt 5 | skipp 6 | whats 7 | -------------------------------------------------------------------------------- /scripts/load-dependencies.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/load-dependencies.lisp -------------------------------------------------------------------------------- /scripts/manifest-abcl.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/manifest-abcl.scm -------------------------------------------------------------------------------- /scripts/manifest-ecl.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/manifest-ecl.scm -------------------------------------------------------------------------------- /scripts/manifest-sbcl.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/manifest-sbcl.scm -------------------------------------------------------------------------------- /scripts/manifest.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/manifest.scm -------------------------------------------------------------------------------- /scripts/org-publish-project.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/org-publish-project.el -------------------------------------------------------------------------------- /scripts/profile-loading.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/profile-loading.lisp -------------------------------------------------------------------------------- /scripts/quicklisp.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/quicklisp.lisp -------------------------------------------------------------------------------- /scripts/run-tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/run-tests.lisp -------------------------------------------------------------------------------- /scripts/setup-quicklisp.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/setup-quicklisp.lisp -------------------------------------------------------------------------------- /scripts/test-abcl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/test-abcl.sh -------------------------------------------------------------------------------- /scripts/test-ccl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/test-ccl.sh -------------------------------------------------------------------------------- /scripts/test-clasp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/test-clasp.sh -------------------------------------------------------------------------------- /scripts/test-ecl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/test-ecl.sh -------------------------------------------------------------------------------- /scripts/test-pedantic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/test-pedantic.sh -------------------------------------------------------------------------------- /scripts/test-sbcl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/scripts/test-sbcl.sh -------------------------------------------------------------------------------- /src/+parachute.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/+parachute.lisp -------------------------------------------------------------------------------- /src/analysis.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/analysis.lisp -------------------------------------------------------------------------------- /src/asdf.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/asdf.lisp -------------------------------------------------------------------------------- /src/breeze.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/breeze.lisp -------------------------------------------------------------------------------- /src/buffer.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/buffer.lisp -------------------------------------------------------------------------------- /src/channel.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/channel.lisp -------------------------------------------------------------------------------- /src/cl-todo.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/cl-todo.lisp -------------------------------------------------------------------------------- /src/cl.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/cl.lisp -------------------------------------------------------------------------------- /src/class-utils.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/class-utils.lisp -------------------------------------------------------------------------------- /src/cmds/+quickproject.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/cmds/+quickproject.lisp -------------------------------------------------------------------------------- /src/cmds/blueprint.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/cmds/blueprint.lisp -------------------------------------------------------------------------------- /src/cmds/capture.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/cmds/capture.lisp -------------------------------------------------------------------------------- /src/cmds/command-utils.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/cmds/command-utils.lisp -------------------------------------------------------------------------------- /src/cmds/completion.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/cmds/completion.lisp -------------------------------------------------------------------------------- /src/cmds/editing.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/cmds/editing.lisp -------------------------------------------------------------------------------- /src/cmds/egraph-command.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/cmds/egraph-command.lisp -------------------------------------------------------------------------------- /src/cmds/invert.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/cmds/invert.lisp -------------------------------------------------------------------------------- /src/cmds/other-files.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/cmds/other-files.lisp -------------------------------------------------------------------------------- /src/cmds/package-commands.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/cmds/package-commands.lisp -------------------------------------------------------------------------------- /src/cmds/project.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/cmds/project.lisp -------------------------------------------------------------------------------- /src/cmds/quicklisp.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/cmds/quicklisp.lisp -------------------------------------------------------------------------------- /src/cmds/test-commands.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/cmds/test-commands.lisp -------------------------------------------------------------------------------- /src/command.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/command.lisp -------------------------------------------------------------------------------- /src/configuration.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/configuration.lisp -------------------------------------------------------------------------------- /src/doctor.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/doctor.lisp -------------------------------------------------------------------------------- /src/documentation.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/documentation.lisp -------------------------------------------------------------------------------- /src/dogfood/dogfood.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/dogfood/dogfood.lisp -------------------------------------------------------------------------------- /src/egraph.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/egraph.lisp -------------------------------------------------------------------------------- /src/ensure-breeze.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/ensure-breeze.lisp -------------------------------------------------------------------------------- /src/generics.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/generics.lisp -------------------------------------------------------------------------------- /src/indirection.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/indirection.lisp -------------------------------------------------------------------------------- /src/lint.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/lint.lisp -------------------------------------------------------------------------------- /src/listener.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/listener.lisp -------------------------------------------------------------------------------- /src/logging.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/logging.lisp -------------------------------------------------------------------------------- /src/package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/package.lisp -------------------------------------------------------------------------------- /src/parser/incremental-parser.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/parser/incremental-parser.lisp -------------------------------------------------------------------------------- /src/parser/parse-tree.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/parser/parse-tree.lisp -------------------------------------------------------------------------------- /src/parser/parser-state.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/parser/parser-state.lisp -------------------------------------------------------------------------------- /src/parser/parser.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/parser/parser.lisp -------------------------------------------------------------------------------- /src/pattern/compile-pattern.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/pattern/compile-pattern.lisp -------------------------------------------------------------------------------- /src/pattern/iterator.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/pattern/iterator.lisp -------------------------------------------------------------------------------- /src/pattern/match.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/pattern/match.lisp -------------------------------------------------------------------------------- /src/pattern/pattern.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/pattern/pattern.lisp -------------------------------------------------------------------------------- /src/pattern/rewrite.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/pattern/rewrite.lisp -------------------------------------------------------------------------------- /src/pattern/substitution.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/pattern/substitution.lisp -------------------------------------------------------------------------------- /src/range.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/range.lisp -------------------------------------------------------------------------------- /src/refactor.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/refactor.lisp -------------------------------------------------------------------------------- /src/report.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/report.lisp -------------------------------------------------------------------------------- /src/string-utils.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/string-utils.lisp -------------------------------------------------------------------------------- /src/suggestion.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/suggestion.lisp -------------------------------------------------------------------------------- /src/test-file.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/test-file.lisp -------------------------------------------------------------------------------- /src/thread.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/thread.lisp -------------------------------------------------------------------------------- /src/utils.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/utils.lisp -------------------------------------------------------------------------------- /src/workspace.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/workspace.lisp -------------------------------------------------------------------------------- /src/xref.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/src/xref.lisp -------------------------------------------------------------------------------- /tests/analysis.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/analysis.lisp -------------------------------------------------------------------------------- /tests/buffer.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/buffer.lisp -------------------------------------------------------------------------------- /tests/channel.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/channel.lisp -------------------------------------------------------------------------------- /tests/cmds/other-files.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/cmds/other-files.lisp -------------------------------------------------------------------------------- /tests/command.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/command.lisp -------------------------------------------------------------------------------- /tests/conditions.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/conditions.lisp -------------------------------------------------------------------------------- /tests/documentation.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/documentation.lisp -------------------------------------------------------------------------------- /tests/dummy-package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/dummy-package.lisp -------------------------------------------------------------------------------- /tests/egraph.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/egraph.lisp -------------------------------------------------------------------------------- /tests/emacs/breeze-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/emacs/breeze-test.el -------------------------------------------------------------------------------- /tests/emacs/breeze.erts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/emacs/breeze.erts -------------------------------------------------------------------------------- /tests/emacs/dot-emacs.d/early-init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/emacs/dot-emacs.d/early-init.el -------------------------------------------------------------------------------- /tests/emacs/dot-emacs.d/init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/emacs/dot-emacs.d/init.el -------------------------------------------------------------------------------- /tests/emacs/no-listener.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/emacs/no-listener.el -------------------------------------------------------------------------------- /tests/emacs/test-straight.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/emacs/test-straight.el -------------------------------------------------------------------------------- /tests/emacs/wip-demo.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/emacs/wip-demo.el -------------------------------------------------------------------------------- /tests/incremental-reader.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/incremental-reader.lisp -------------------------------------------------------------------------------- /tests/iterator.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/iterator.lisp -------------------------------------------------------------------------------- /tests/lint.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/lint.lisp -------------------------------------------------------------------------------- /tests/listener.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/listener.lisp -------------------------------------------------------------------------------- /tests/logging.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/logging.lisp -------------------------------------------------------------------------------- /tests/main.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/main.lisp -------------------------------------------------------------------------------- /tests/package-commands.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/package-commands.lisp -------------------------------------------------------------------------------- /tests/package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/package.lisp -------------------------------------------------------------------------------- /tests/parse-tree.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/parse-tree.lisp -------------------------------------------------------------------------------- /tests/parser.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/parser.lisp -------------------------------------------------------------------------------- /tests/parser.randomized.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/parser.randomized.lisp -------------------------------------------------------------------------------- /tests/pattern/compile-pattern.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/pattern/compile-pattern.lisp -------------------------------------------------------------------------------- /tests/pattern/match.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/pattern/match.lisp -------------------------------------------------------------------------------- /tests/pattern/pattern.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/pattern/pattern.lisp -------------------------------------------------------------------------------- /tests/pattern/rewrite.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/pattern/rewrite.lisp -------------------------------------------------------------------------------- /tests/pattern/substitution.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/pattern/substitution.lisp -------------------------------------------------------------------------------- /tests/refactor.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/refactor.lisp -------------------------------------------------------------------------------- /tests/report.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/report.lisp -------------------------------------------------------------------------------- /tests/string-utils.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/string-utils.lisp -------------------------------------------------------------------------------- /tests/utils.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/utils.lisp -------------------------------------------------------------------------------- /tests/workspace.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/workspace.lisp -------------------------------------------------------------------------------- /tests/xref.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/tests/xref.lisp -------------------------------------------------------------------------------- /workbench.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/workbench.el -------------------------------------------------------------------------------- /workbench.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fstamour/breeze/HEAD/workbench.lisp --------------------------------------------------------------------------------