Skip to content

Commit

Permalink
Backup update
Browse files Browse the repository at this point in the history
  • Loading branch information
marvim committed Oct 28, 2023
1 parent ffc5598 commit 92e47e1
Show file tree
Hide file tree
Showing 28 changed files with 8,244 additions and 205 deletions.
2 changes: 1 addition & 1 deletion last_update
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2023-10-26T23:49:04Z
2023-10-27T23:33:26Z
662 changes: 662 additions & 0 deletions repositories/neovim/issues/20202.json

Large diffs are not rendered by default.

54 changes: 49 additions & 5 deletions repositories/neovim/issues/24297.json
Original file line number Diff line number Diff line change
Expand Up @@ -533,9 +533,53 @@
"type": "User",
"url": "https://api.github.com/users/faergeek"
}
},
{
"author_association": "NONE",
"body": "this seems to work and idk why\r\n```lua\r\nkeymap(\"n\", \"<leader>f\", function()\r\n local lines = vim.api.nvim_buf_get_lines(0, 0, -1, false)\r\n vim.api.nvim_buf_set_lines(0, 0, -1, false, lines)\r\n vim.lsp.buf.format()\r\nend)\r\n```",
"created_at": "2023-10-27T03:48:37Z",
"html_url": "https://github.com/neovim/neovim/issues/24297#issuecomment-1782245297",
"id": 1782245297,
"issue_url": "https://api.github.com/repos/neovim/neovim/issues/24297",
"node_id": "IC_kwDOAPphoM5qOuex",
"performed_via_github_app": null,
"reactions": {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/neovim/neovim/issues/comments/1782245297/reactions"
},
"updated_at": "2023-10-27T03:48:37Z",
"url": "https://api.github.com/repos/neovim/neovim/issues/comments/1782245297",
"user": {
"avatar_url": "https://avatars.githubusercontent.com/u/130783534?v=4",
"events_url": "https://api.github.com/users/Sam-programs/events{/privacy}",
"followers_url": "https://api.github.com/users/Sam-programs/followers",
"following_url": "https://api.github.com/users/Sam-programs/following{/other_user}",
"gists_url": "https://api.github.com/users/Sam-programs/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/Sam-programs",
"id": 130783534,
"login": "Sam-programs",
"node_id": "U_kgDOB8uZLg",
"organizations_url": "https://api.github.com/users/Sam-programs/orgs",
"received_events_url": "https://api.github.com/users/Sam-programs/received_events",
"repos_url": "https://api.github.com/users/Sam-programs/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/Sam-programs/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Sam-programs/subscriptions",
"type": "User",
"url": "https://api.github.com/users/Sam-programs"
}
}
],
"comments": 12,
"comments": 13,
"comments_url": "https://api.github.com/repos/neovim/neovim/issues/24297/comments",
"created_at": "2023-07-08T15:14:58Z",
"events_url": "https://api.github.com/repos/neovim/neovim/issues/24297/events",
Expand Down Expand Up @@ -583,7 +627,7 @@
"locked": false,
"milestone": {
"closed_at": null,
"closed_issues": 191,
"closed_issues": 196,
"created_at": "2014-11-26T22:13:11Z",
"creator": {
"avatar_url": "https://avatars.githubusercontent.com/u/1359421?v=4",
Expand Down Expand Up @@ -612,10 +656,10 @@
"labels_url": "https://api.github.com/repos/neovim/neovim/milestones/9/labels",
"node_id": "MDk6TWlsZXN0b25lODgxOTc4",
"number": 9,
"open_issues": 228,
"open_issues": 231,
"state": "open",
"title": "unplanned",
"updated_at": "2023-09-15T10:59:28Z",
"updated_at": "2023-10-13T16:33:59Z",
"url": "https://api.github.com/repos/neovim/neovim/milestones/9"
},
"node_id": "I_kwDOAPphoM5q_T9D",
Expand All @@ -638,7 +682,7 @@
"state_reason": "reopened",
"timeline_url": "https://api.github.com/repos/neovim/neovim/issues/24297/timeline",
"title": "LSP: undoing after vim.lsp.buf.format() changes cursor position",
"updated_at": "2023-09-15T04:16:18Z",
"updated_at": "2023-10-27T03:48:37Z",
"url": "https://api.github.com/repos/neovim/neovim/issues/24297",
"user": {
"avatar_url": "https://avatars.githubusercontent.com/u/44764250?v=4",
Expand Down
8 changes: 4 additions & 4 deletions repositories/neovim/issues/25696.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"assignee": null,
"assignees": [],
"author_association": "MEMBER",
"body": "The following is a draft (nothing is set in stone) of the implemented and upcoming features for snippets:\r\n\r\n- [X] Use LPEG for snippet parsing: https://github.com/neovim/neovim/pull/25352\r\n- [x] Basic snippet expansion: Keeping track of placeholders, moving between them, `TM_x` variable replacement: https://github.com/neovim/neovim/pull/25301\r\n- [ ] Variable transformations via regexes.\r\n- [ ] Choice placeholders, in which the user can select from a given set of options to insert.\r\n- [ ] Nested placeholders.\r\n\r\nRefactors:\r\n- [ ] Update extmark handling that could benefit from #25767",
"body": "The following is a draft (nothing is set in stone) of the implemented and upcoming features for snippets:\r\n\r\n- [X] Use LPEG for snippet parsing: https://github.com/neovim/neovim/pull/25352\r\n- [x] Basic snippet expansion: Keeping track of placeholders, moving between them, `TM_x` variable replacement: https://github.com/neovim/neovim/pull/25301\r\n- [ ] Variable transformations via regexes.\r\n- [ ] Choice placeholders, in which the user can select from a given set of options to insert: https://github.com/neovim/neovim/pull/25795\r\n- [ ] Nested placeholders.\r\n\r\nRefactors:\r\n- [ ] Update extmark handling that could benefit from #25767",
"closed_at": null,
"comment_data": [],
"comments": 0,
Expand Down Expand Up @@ -75,23 +75,23 @@
"number": 25696,
"performed_via_github_app": null,
"reactions": {
"+1": 3,
"+1": 4,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 14,
"total_count": 17,
"total_count": 18,
"url": "https://api.github.com/repos/neovim/neovim/issues/25696/reactions"
},
"repository_url": "https://api.github.com/repos/neovim/neovim",
"state": "open",
"state_reason": null,
"timeline_url": "https://api.github.com/repos/neovim/neovim/issues/25696/timeline",
"title": "Snippet API roadmap",
"updated_at": "2023-10-24T21:27:57Z",
"updated_at": "2023-10-27T05:54:40Z",
"url": "https://api.github.com/repos/neovim/neovim/issues/25696",
"user": {
"avatar_url": "https://avatars.githubusercontent.com/u/62502207?v=4",
Expand Down
75 changes: 55 additions & 20 deletions repositories/neovim/issues/25712.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"assignees": [],
"author_association": "NONE",
"body": "### Problem\n\nShowing Error: Spawning language server with cmd: `/data/data/com.termux/files/usr/bin/typescript-language-server` failed. The language server is either not installed, missing from PATH\r\n, or not executable.\r\n\r\nI am running on Termux android app.\r\n\r\nI have installed it by npm i -g typescript-language-server typescript\r\n\r\n`/data/data/com.termux/files/usr/bin/typescript-language-server` is available and excutable.\r\n\r\nBut still is not working.\r\n\n\n### Steps to reproduce using \"nvim -u minimal_init.lua\"\n\nProblem must be in lsp\n\n### Expected behavior\n\n_No response_\n\n### Neovim version (nvim -v)\n\nNVIM v0.9.4 Build type: Release LuaJIT 2.1.0-beta3 system vimrc file: \"$VIM/sysinit.vim\" fall-back for $VIM: \"/data/data/com.termux/files/usr/share/nvim\" Run :checkhealth for more info\n\n### Language server name/version\n\ntypescript-language-server (tsserver) 3.3.2\n\n### Operating system/version\n\nandroid 14\n\n### Log file\n\n_No response_",
"closed_at": null,
"closed_at": "2023-10-28T00:59:48Z",
"comment_data": [
{
"author_association": "NONE",
Expand Down Expand Up @@ -225,32 +225,67 @@
"type": "User",
"url": "https://api.github.com/users/Mrestof"
}
},
{
"author_association": "MEMBER",
"body": "This is a language server installation problem.",
"created_at": "2023-10-28T00:59:48Z",
"html_url": "https://github.com/neovim/neovim/issues/25712#issuecomment-1783645587",
"id": 1783645587,
"issue_url": "https://api.github.com/repos/neovim/neovim/issues/25712",
"node_id": "IC_kwDOAPphoM5qUEWT",
"performed_via_github_app": null,
"reactions": {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/neovim/neovim/issues/comments/1783645587/reactions"
},
"updated_at": "2023-10-28T00:59:48Z",
"url": "https://api.github.com/repos/neovim/neovim/issues/comments/1783645587",
"user": {
"avatar_url": "https://avatars.githubusercontent.com/u/35768171?v=4",
"events_url": "https://api.github.com/users/zeertzjq/events{/privacy}",
"followers_url": "https://api.github.com/users/zeertzjq/followers",
"following_url": "https://api.github.com/users/zeertzjq/following{/other_user}",
"gists_url": "https://api.github.com/users/zeertzjq/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/zeertzjq",
"id": 35768171,
"login": "zeertzjq",
"node_id": "MDQ6VXNlcjM1NzY4MTcx",
"organizations_url": "https://api.github.com/users/zeertzjq/orgs",
"received_events_url": "https://api.github.com/users/zeertzjq/received_events",
"repos_url": "https://api.github.com/users/zeertzjq/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/zeertzjq/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zeertzjq/subscriptions",
"type": "User",
"url": "https://api.github.com/users/zeertzjq"
}
}
],
"comments": 5,
"comments": 6,
"comments_url": "https://api.github.com/repos/neovim/neovim/issues/25712/comments",
"created_at": "2023-10-19T06:05:34Z",
"events_url": "https://api.github.com/repos/neovim/neovim/issues/25712/events",
"html_url": "https://github.com/neovim/neovim/issues/25712",
"id": 1951355942,
"labels": [
{
"color": "f9d0c4",
"default": true,
"description": "issues reporting wrong behavior",
"id": 77997474,
"name": "bug",
"node_id": "MDU6TGFiZWw3Nzk5NzQ3NA==",
"url": "https://api.github.com/repos/neovim/neovim/labels/bug"
},
{
"color": "c5def5",
"color": "e6e6e6",
"default": false,
"description": null,
"id": 662566370,
"name": "lsp",
"node_id": "MDU6TGFiZWw2NjI1NjYzNzA=",
"url": "https://api.github.com/repos/neovim/neovim/labels/lsp"
"description": "Issues that are closed as \"invalid\"",
"id": 77997477,
"name": "closed:invalid",
"node_id": "MDU6TGFiZWw3Nzk5NzQ3Nw==",
"url": "https://api.github.com/repos/neovim/neovim/labels/closed:invalid"
}
],
"labels_url": "https://api.github.com/repos/neovim/neovim/issues/25712/labels{/name}",
Expand All @@ -272,11 +307,11 @@
"url": "https://api.github.com/repos/neovim/neovim/issues/25712/reactions"
},
"repository_url": "https://api.github.com/repos/neovim/neovim",
"state": "open",
"state_reason": null,
"state": "closed",
"state_reason": "not_planned",
"timeline_url": "https://api.github.com/repos/neovim/neovim/issues/25712/timeline",
"title": "tsserver not working on termux",
"updated_at": "2023-10-24T14:34:20Z",
"updated_at": "2023-10-28T00:59:56Z",
"url": "https://api.github.com/repos/neovim/neovim/issues/25712",
"user": {
"avatar_url": "https://avatars.githubusercontent.com/u/81950126?v=4",
Expand Down
52 changes: 48 additions & 4 deletions repositories/neovim/issues/25788.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
"node_id": "IC_kwDOAPphoM5qLUIm",
"performed_via_github_app": null,
"reactions": {
"+1": 0,
"+1": 1,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"total_count": 1,
"url": "https://api.github.com/repos/neovim/neovim/issues/comments/1781350950/reactions"
},
"updated_at": "2023-10-26T15:39:45Z",
Expand All @@ -49,9 +49,53 @@
"type": "User",
"url": "https://api.github.com/users/mfussenegger"
}
},
{
"author_association": "CONTRIBUTOR",
"body": "Could you expand on the `LspAttach` / `LspRequest` suggestion? `LspAttach` appears to run too early for the plugins that this use-case is for and `LspRequest` is very spammy. I don't know what you mean by reacting only to initialize events. I suppose that is the detail from your suggestion that I'm missing.\r\n\r\nAs for triggering re-compilation / analysis, that's not much of a concern in this use-case as the intent is to make plug-ins available after the first time (at least) that the LSP is indexed and ready. If the event triggers once again later, though not ideal, it's still certainly an improvement. https://github.com/simrat39/symbols-outline.nvim is a decent example. It cannot display until the LSP is done checking the files for the first time.",
"created_at": "2023-10-27T07:37:36Z",
"html_url": "https://github.com/neovim/neovim/issues/25788#issuecomment-1782445178",
"id": 1782445178,
"issue_url": "https://api.github.com/repos/neovim/neovim/issues/25788",
"node_id": "IC_kwDOAPphoM5qPfR6",
"performed_via_github_app": null,
"reactions": {
"+1": 0,
"-1": 0,
"confused": 0,
"eyes": 0,
"heart": 0,
"hooray": 0,
"laugh": 0,
"rocket": 0,
"total_count": 0,
"url": "https://api.github.com/repos/neovim/neovim/issues/comments/1782445178/reactions"
},
"updated_at": "2023-10-27T07:37:36Z",
"url": "https://api.github.com/repos/neovim/neovim/issues/comments/1782445178",
"user": {
"avatar_url": "https://avatars.githubusercontent.com/u/10103049?v=4",
"events_url": "https://api.github.com/users/ColinKennedy/events{/privacy}",
"followers_url": "https://api.github.com/users/ColinKennedy/followers",
"following_url": "https://api.github.com/users/ColinKennedy/following{/other_user}",
"gists_url": "https://api.github.com/users/ColinKennedy/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/ColinKennedy",
"id": 10103049,
"login": "ColinKennedy",
"node_id": "MDQ6VXNlcjEwMTAzMDQ5",
"organizations_url": "https://api.github.com/users/ColinKennedy/orgs",
"received_events_url": "https://api.github.com/users/ColinKennedy/received_events",
"repos_url": "https://api.github.com/users/ColinKennedy/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/ColinKennedy/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ColinKennedy/subscriptions",
"type": "User",
"url": "https://api.github.com/users/ColinKennedy"
}
}
],
"comments": 1,
"comments": 2,
"comments_url": "https://api.github.com/repos/neovim/neovim/issues/25788/comments",
"created_at": "2023-10-26T15:15:47Z",
"events_url": "https://api.github.com/repos/neovim/neovim/issues/25788/events",
Expand Down Expand Up @@ -100,7 +144,7 @@
"state_reason": null,
"timeline_url": "https://api.github.com/repos/neovim/neovim/issues/25788/timeline",
"title": "Add `LspComplete` autocmd",
"updated_at": "2023-10-26T22:25:17Z",
"updated_at": "2023-10-27T07:37:36Z",
"url": "https://api.github.com/repos/neovim/neovim/issues/25788",
"user": {
"avatar_url": "https://avatars.githubusercontent.com/u/10103049?v=4",
Expand Down
Loading

0 comments on commit 92e47e1

Please sign in to comment.