Skip to content
This repository has been archived by the owner on Mar 16, 2023. It is now read-only.

Changelog #13

Open
ok-nick opened this issue Apr 30, 2022 · 2 comments
Open

Changelog #13

ok-nick opened this issue Apr 30, 2022 · 2 comments

Comments

@ok-nick
Copy link

ok-nick commented Apr 30, 2022

I've been interested in this project and looking back every once in a while to see if there have been any changes. Unfortunately, all I can really do is look at commit messages which is quite tedious. Is there any way you could supply a changelog file to keep track of all the new updates?

@noib3
Copy link
Owner

noib3 commented Apr 30, 2022

I was thinking of creating a CHANGELOG.md after releasing the first alpha. Right now I'm adding/changing features pretty much every commit, and documenting every change would add significant overhead to the development cycle.

The lsp source (sort of) works, but there are still lots of rough edges and bugs that need to be addressed. If you want to try it out a minimal config is

require("compleet").setup({
  sources = {
    lsp = { enable = true },
  }
})

together with

local lspconfig = require("lspconfig")
local capabilities = require("compleet").lsp_client_capabilities()

-- For every lsp server you have enabled
lspconfig.<server>.setup({
  capabilities = capabilities,
  ...
})

to advertise the client's completion capabilities to lsp servers.

@noib3 noib3 closed this as completed Apr 30, 2022
@noib3 noib3 reopened this Apr 30, 2022
@ok-nick
Copy link
Author

ok-nick commented Apr 30, 2022

The project is still pretty young and I wouldn't expect you to note down everything. However, it would be nice if you could include any major changes to keep everyone updated.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants