Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(fennel-ls): enable single_file_support #3417

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions doc/configs.md
Original file line number Diff line number Diff line change
Expand Up @@ -3493,6 +3493,10 @@ Default config:
```lua
{}
```
- `single_file_support` :
```lua
true
```
Comment on lines +3496 to +3499
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you don't need add this in doc



## fish_lsp
Expand Down
1 change: 1 addition & 0 deletions lua/lspconfig/configs/fennel_ls.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ return {
return util.search_ancestors(dir, has_fls_project_cfg) or vim.fs.root(0, '.git')
end,
settings = {},
single_file_support = true,
capabilities = {
offsetEncoding = { 'utf-8', 'utf-16' },
},
Expand Down
Loading