Skip to content

Commit

Permalink
Fix typo in request arguments (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimfeld committed Sep 24, 2024
1 parent f74f999 commit f1b1f2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/codeium/source.lua
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ function Source:complete(params, callback)
text = text,
editor_language = filetype,
language = language,
curson_position = { row = cursor.row, col = cursor.col },
cursor_position = { row = cursor.row, col = cursor.col },
absolute_uri = 'file://' .. vim.api.nvim_buf_get_name(bufnr),
workspace_uri = 'file://' .. util.get_relative_path(bufnr),
line_ending = line_ending,
Expand Down

0 comments on commit f1b1f2c

Please sign in to comment.