Skip to content

Commit

Permalink
dylan-tool -> deft (part 2)
Browse files Browse the repository at this point in the history
Remove some leftover references to dylan-tool. I had `opendylan` in my LSP
workspace so that I could add logging and whatnot, and because it has a
`dylan-tool` submodule I had a registry entry for `dylan-tool` and didn't
notice I missed a `use dylan-tool;` clause in `lsp-server`.
  • Loading branch information
cgay committed Apr 28, 2024
1 parent 0b30b00 commit 84a77ed
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
13 changes: 6 additions & 7 deletions documentation/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,15 @@ Usage

The LSP server needs to be able to open a project (that is, a Dylan library)
associated with the file you're editing when you turn on LSP in your editor. It
assumes you are using a `dylan-tool
<https://github.com/dylan-lang/dylan-tool>`_ workspace and searches for a
project to open as follows:
assumes you are using a `deft <https://github.com/dylan-lang/deft>`_ workspace
and searches for a project to open as follows:

1. If there is a :file:`workspace.json` file and that file has a
`"default-library"` property, the specified library is opened.

2. It uses the :program:`dylan` tool to choose a library defined in the
workspace. This is `generally
<https://github.com/dylan-lang/dylan-tool/blob/292b7bf761745c9fa810511c9888f802dd787011/sources/workspaces/workspaces.dylan#L151>`_
2. It uses :program:`deft` to choose a library defined in the workspace. This
is `generally
<https://github.com/dylan-lang/deft/blob/86583a27d1b63d1480a8c57e46d0dd249d131515/sources/workspaces/workspaces.dylan#L145>`_
the test suite library, if one exists; otherwise it chooses a project
arbitrarily.

Expand All @@ -80,7 +79,7 @@ which must be on your :envvar:`PATH`.
When you open each new file in your editor the LSP client may try to start a
new project if the file isn't part of the same :program:`dylan` workspace
directory. If you want the client to use just one project, use a `multi-package
workspace <https://opendylan.org/package/dylan-tool/index.html#workspaces>`_.
workspace <https://opendylan.org/package/deft/index.html#workspaces>`_.

.. note:: Always run ``dylan update`` and ``dylan build -a`` in your workspace
**before** starting the LSP server, or :program:`dylan-lsp-server`
Expand Down
4 changes: 2 additions & 2 deletions sources/handlers.dylan
Original file line number Diff line number Diff line change
Expand Up @@ -609,11 +609,11 @@ define function find-project-name
let library-name
= workspace & ws/workspace-default-library-name(workspace);
if (library-name)
log-debug("Found dylan-tool workspace default library name %=", library-name);
log-debug("Found deft workspace default library name %=", library-name);
library-name
else
error("Dylan workspace has no default library; no .lid files created yet?"
" See https://opendylan.org/package/dylan-tool/index.html#workspaces"
" See https://opendylan.org/package/deft/index.html#workspaces"
" for how to configure a default project.");
end
end if
Expand Down
2 changes: 1 addition & 1 deletion sources/library.dylan
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ define library lsp-dylan
use dfmc-back-end-implementations;
use dfmc-reader;
use dylan;
use dylan-tool;
use deft;
use environment-commands;
use environment-internal-commands;
use environment-protocols;
Expand Down
4 changes: 2 additions & 2 deletions sources/misc.dylan
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ define function invoke-message-handler
end function;

// Find the workspace root. The "rootUri" LSP parameter takes precedence over
// the deprecated "rootPath" LSP parameter. We first look for a `dylan-tool`
// the deprecated "rootPath" LSP parameter. We first look for a `deft`
// workspace root containing the file and then fall back to the nearest
// directory containing a `registry` directory. This should work for
// `dylan-tool` users and others equally well.
// `deft` users and others equally well.
define function find-workspace-root
(root-uri, root-path) => (root :: false-or(<directory-locator>))
let directory
Expand Down

0 comments on commit 84a77ed

Please sign in to comment.