Remove documentation of experimental.rename (#1863)

This commit is contained in:
Micha Reiser 2025-12-12 13:57:42 +01:00 committed by GitHub
parent e6c0420ac6
commit 5e31bc933b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -336,71 +336,6 @@ include symbols not currently in scope but available in your environment.
______________________________________________________________________
## `experimental`
These settings control the experimental language features that ty provides in an editor.
### `rename`
Whether to enable the experimental support for renaming symbols in the editor.
**Default value**: `false`
**Type**: `boolean`
**Example usage**:
=== "VS Code"
```json
{
"ty.experimental.rename": true
}
```
=== "Neovim"
```lua
require('lspconfig').ty.setup({
settings = {
ty = {
experimental = {
rename = true,
},
},
},
})
-- For Neovim 0.11.0 and later:
vim.lsp.config('ty', {
settings = {
ty = {
experimental = {
rename = true,
},
},
},
})
```
=== "Zed"
```json
{
"lsp": {
"ty": {
"settings": {
"experimental": {
"rename": true
}
}
}
}
}
```
______________________________________________________________________
## VS Code specific
The following settings are specific to [ty's VS Code extension][ty-vscode].