|
186 | 186 | "url": "https://api.github.com/users/lewis6991", |
187 | 187 | "user_view_type": "public" |
188 | 188 | } |
| 189 | + }, |
| 190 | + { |
| 191 | + "author_association": "CONTRIBUTOR", |
| 192 | + "body": "How would one prefer one server over another for formatting? I tried with\n\n`lsp/ts_ls.lua`:\n```lua\nlocal noop = function() return {} end\n\nreturn {\n\thandlers = {\n\t\t['textDocument/formatting'] = noop,\n\t\t['textDocument/rangeFormatting'] = noop,\n\t},\n}\n```\n\nto disable formatting for one lsp, but it didn't work. I couldn't find how to edit the capabilities to remove formatting either.\n\nRight now the two lsp tries to format, and it makes a small flash due to the conflicting formats.", |
| 193 | + "created_at": "2025-08-04T11:21:11Z", |
| 194 | + "html_url": "https://github.com/neovim/neovim/issues/16363#issuecomment-3150206207", |
| 195 | + "id": 3150206207, |
| 196 | + "issue_url": "https://api.github.com/repos/neovim/neovim/issues/16363", |
| 197 | + "node_id": "IC_kwDOAPphoM67xFT_", |
| 198 | + "performed_via_github_app": null, |
| 199 | + "reactions": { |
| 200 | + "+1": 0, |
| 201 | + "-1": 0, |
| 202 | + "confused": 0, |
| 203 | + "eyes": 0, |
| 204 | + "heart": 0, |
| 205 | + "hooray": 0, |
| 206 | + "laugh": 0, |
| 207 | + "rocket": 0, |
| 208 | + "total_count": 0, |
| 209 | + "url": "https://api.github.com/repos/neovim/neovim/issues/comments/3150206207/reactions" |
| 210 | + }, |
| 211 | + "updated_at": "2025-08-04T11:21:11Z", |
| 212 | + "url": "https://api.github.com/repos/neovim/neovim/issues/comments/3150206207", |
| 213 | + "user": { |
| 214 | + "avatar_url": "https://avatars.githubusercontent.com/u/32224410?v=4", |
| 215 | + "events_url": "https://api.github.com/users/zoriya/events{/privacy}", |
| 216 | + "followers_url": "https://api.github.com/users/zoriya/followers", |
| 217 | + "following_url": "https://api.github.com/users/zoriya/following{/other_user}", |
| 218 | + "gists_url": "https://api.github.com/users/zoriya/gists{/gist_id}", |
| 219 | + "gravatar_id": "", |
| 220 | + "html_url": "https://github.com/zoriya", |
| 221 | + "id": 32224410, |
| 222 | + "login": "zoriya", |
| 223 | + "node_id": "MDQ6VXNlcjMyMjI0NDEw", |
| 224 | + "organizations_url": "https://api.github.com/users/zoriya/orgs", |
| 225 | + "received_events_url": "https://api.github.com/users/zoriya/received_events", |
| 226 | + "repos_url": "https://api.github.com/users/zoriya/repos", |
| 227 | + "site_admin": false, |
| 228 | + "starred_url": "https://api.github.com/users/zoriya/starred{/owner}{/repo}", |
| 229 | + "subscriptions_url": "https://api.github.com/users/zoriya/subscriptions", |
| 230 | + "type": "User", |
| 231 | + "url": "https://api.github.com/users/zoriya", |
| 232 | + "user_view_type": "public" |
| 233 | + } |
| 234 | + }, |
| 235 | + { |
| 236 | + "author_association": "NONE", |
| 237 | + "body": "> to disable formatting for one lsp, but it didn't work. I couldn't find how to edit the capabilities to remove formatting either.\n\nThe way I did it for luals, is by disabling the capability.\n```\n ---@param client vim.lsp.Client\n on_init = function(client, _)\n if client.server_capabilities then\n local disabled_capabilities = {\n \"renameProvider\",\n \"documentRangeFormattingProvider\",\n \"referencesProvider\",\n \"semanticTokensProvider\",\n \"codeActionProvider\",\n \"colorProvider\",\n -- \"completionProvider\",\n \"inlayHintProvider\",\n \"documentHighlightProvider\",\n \"foldingRangeProvider\",\n \"documentFormattingProvider\",\n \"codeLensProvider\",\n \"documentOnTypeFormattingProvider\",\n \"executeCommandProvider\",\n \"workspaceSymbolProvider\",\n \"implementationProvider\",\n \"definitionProvider\",\n \"typeDefinitionProvider\",\n \"documentSymbolProvider\",\n \"signatureHelpProvider\",\n }\n for _, capability in pairs(disabled_capabilities) do\n client.server_capabilities[capability] = false\n end\n end\n end,\n\n```", |
| 238 | + "created_at": "2025-08-04T12:06:45Z", |
| 239 | + "html_url": "https://github.com/neovim/neovim/issues/16363#issuecomment-3150345060", |
| 240 | + "id": 3150345060, |
| 241 | + "issue_url": "https://api.github.com/repos/neovim/neovim/issues/16363", |
| 242 | + "node_id": "IC_kwDOAPphoM67xnNk", |
| 243 | + "performed_via_github_app": null, |
| 244 | + "reactions": { |
| 245 | + "+1": 0, |
| 246 | + "-1": 0, |
| 247 | + "confused": 0, |
| 248 | + "eyes": 0, |
| 249 | + "heart": 1, |
| 250 | + "hooray": 0, |
| 251 | + "laugh": 0, |
| 252 | + "rocket": 0, |
| 253 | + "total_count": 1, |
| 254 | + "url": "https://api.github.com/repos/neovim/neovim/issues/comments/3150345060/reactions" |
| 255 | + }, |
| 256 | + "updated_at": "2025-08-04T12:09:16Z", |
| 257 | + "url": "https://api.github.com/repos/neovim/neovim/issues/comments/3150345060", |
| 258 | + "user": { |
| 259 | + "avatar_url": "https://avatars.githubusercontent.com/u/110101204?v=4", |
| 260 | + "events_url": "https://api.github.com/users/GreatGatsby102/events{/privacy}", |
| 261 | + "followers_url": "https://api.github.com/users/GreatGatsby102/followers", |
| 262 | + "following_url": "https://api.github.com/users/GreatGatsby102/following{/other_user}", |
| 263 | + "gists_url": "https://api.github.com/users/GreatGatsby102/gists{/gist_id}", |
| 264 | + "gravatar_id": "", |
| 265 | + "html_url": "https://github.com/GreatGatsby102", |
| 266 | + "id": 110101204, |
| 267 | + "login": "GreatGatsby102", |
| 268 | + "node_id": "U_kgDOBpAC1A", |
| 269 | + "organizations_url": "https://api.github.com/users/GreatGatsby102/orgs", |
| 270 | + "received_events_url": "https://api.github.com/users/GreatGatsby102/received_events", |
| 271 | + "repos_url": "https://api.github.com/users/GreatGatsby102/repos", |
| 272 | + "site_admin": false, |
| 273 | + "starred_url": "https://api.github.com/users/GreatGatsby102/starred{/owner}{/repo}", |
| 274 | + "subscriptions_url": "https://api.github.com/users/GreatGatsby102/subscriptions", |
| 275 | + "type": "User", |
| 276 | + "url": "https://api.github.com/users/GreatGatsby102", |
| 277 | + "user_view_type": "public" |
| 278 | + } |
189 | 279 | } |
190 | 280 | ], |
191 | | - "comments": 4, |
| 281 | + "comments": 6, |
192 | 282 | "comments_url": "https://api.github.com/repos/neovim/neovim/issues/16363/comments", |
193 | 283 | "created_at": "2021-11-19T01:07:15Z", |
194 | 284 | "events_url": "https://api.github.com/repos/neovim/neovim/issues/16363/events", |
|
209 | 299 | "locked": false, |
210 | 300 | "milestone": { |
211 | 301 | "closed_at": null, |
212 | | - "closed_issues": 726, |
| 302 | + "closed_issues": 734, |
213 | 303 | "created_at": "2014-05-10T20:43:04Z", |
214 | 304 | "creator": { |
215 | 305 | "avatar_url": "https://avatars.githubusercontent.com/u/1359421?v=4", |
|
239 | 329 | "labels_url": "https://api.github.com/repos/neovim/neovim/milestones/6/labels", |
240 | 330 | "node_id": "MDk6TWlsZXN0b25lNjU1MDM3", |
241 | 331 | "number": 6, |
242 | | - "open_issues": 630, |
| 332 | + "open_issues": 635, |
243 | 333 | "state": "open", |
244 | 334 | "title": "backlog", |
245 | | - "updated_at": "2025-07-07T03:51:31Z", |
| 335 | + "updated_at": "2025-08-03T21:37:35Z", |
246 | 336 | "url": "https://api.github.com/repos/neovim/neovim/milestones/6" |
247 | 337 | }, |
248 | 338 | "node_id": "I_kwDOAPphoM4_ECGB", |
249 | 339 | "number": 16363, |
250 | 340 | "performed_via_github_app": null, |
251 | 341 | "reactions": { |
252 | | - "+1": 3, |
| 342 | + "+1": 5, |
253 | 343 | "-1": 0, |
254 | 344 | "confused": 0, |
255 | 345 | "eyes": 0, |
256 | 346 | "heart": 0, |
257 | 347 | "hooray": 0, |
258 | 348 | "laugh": 0, |
259 | 349 | "rocket": 0, |
260 | | - "total_count": 3, |
| 350 | + "total_count": 5, |
261 | 351 | "url": "https://api.github.com/repos/neovim/neovim/issues/16363/reactions" |
262 | 352 | }, |
263 | 353 | "repository_url": "https://api.github.com/repos/neovim/neovim", |
|
280 | 370 | "node_id": "IT_kwDOAGK_Pc4ACRyr", |
281 | 371 | "updated_at": "2024-07-26T10:12:30Z" |
282 | 372 | }, |
283 | | - "updated_at": "2025-07-02T08:38:00Z", |
| 373 | + "updated_at": "2025-08-04T12:09:16Z", |
284 | 374 | "url": "https://api.github.com/repos/neovim/neovim/issues/16363", |
285 | 375 | "user": { |
286 | 376 | "avatar_url": "https://avatars.githubusercontent.com/u/2602750?v=4", |
|
0 commit comments