Skip to content

Commit

Permalink
src/Neovim.ts: stop filtering out deprecated functions.
Browse files Browse the repository at this point in the history
This will ensure that #1603 never happens again.
  • Loading branch information
glacambre committed Apr 28, 2024
1 parent 8004016 commit f89f968
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Neovim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ export async function neovim(
stdout.setTypes(apiInfo.types);

Object.assign(functions, apiInfo.functions
.filter(f => f.deprecated_since === undefined)
.reduce((acc, cur) => {
let name = cur.name;
if (name.startsWith("nvim_")) {
Expand Down

0 comments on commit f89f968

Please sign in to comment.