Make it easier to determine dictionary location
## Adding `--verbose` option to REPL
>
> > Adding a --verbose option to the REPL
>
> Ooh, that could be awesome I didn't even know there is a REPL, maybe it should also be in the docs 😅
>
> It was a newish addition I added to address the common request to scan all files in a project without installing cspell. My standard advice was to install cspll, but when VSCode added the ability to open remote repositories, that no longer worked.
>
> Here are some example steps to try it out.
>
> ### The spell checker works with remote repositories:
>
> <img width="618" height="80" alt="Image" src="https://github.com/user-attachments/assets/1ea34c49-df7b-4f59-902a-37cf202a1178" />
>
> <img width="619" height="106" alt="Image" src="https://github.com/user-attachments/assets/1a53f46d-c10b-4769-a386-1383f1c3d6da" />
>
> <img width="634" height="118" alt="Image" src="https://github.com/user-attachments/assets/c4c54e5d-5ec3-40ad-9e99-1165dfc9dc16" />
>
> <img width="590" height="173" alt="Image" src="https://github.com/user-attachments/assets/a926c5c2-7504-45e2-91c2-3d20e37c76f4" />
>
> <img width="475" height="184" alt="Image" src="https://github.com/user-attachments/assets/41a58358-f825-4284-b1e1-338ab5ecd082" />
>
> It is not as fast a local, but it works.
>
>
>
> > Are you interested in improving the REPL or the info screen?
>
> Sure! I'm always up to help improve the tools that I use As mentioned, I never developed a VSCode extension, so that might take me some time to get into But the `--verbose` should be part of the REPL? isn't it part of the CLI tool itself?
>
> The extension calls the cspell library, but doesn't use the cspell CLI. The cspell CLI is expected to run in the shell. When connecting to remote repositories, there isn't a shell.
>
> The trace command is here:
> https://github.com/streetsidesoftware/vscode-spell-checker/blob/main/packages/client/src/repl/cmdTrace.mts
>
> I believe that is the only file that needs to be changed if the server API returns the dictionary url.
>
>
_Originally posted by @Jason3S in [#5135](https://github.com/streetsidesoftware/vscode-spell-checker/issues/5135#issuecomment-3982833532)_
## Improve the dictionary view in file info
0 条评论