Skip to content

Commit

Permalink
rename acm-backend-ctags-max-candidates
Browse files Browse the repository at this point in the history
  • Loading branch information
werhner committed May 23, 2024
1 parent e20666b commit 7e5ce49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion acm/acm-backend-ctags.el
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
:type 'boolean
:group 'acm-backend-ctags)

(defcustom acm-backend-ctags-candidates-max-num 10
(defcustom acm-backend-ctags-max-candidates 10
"Maximal number of candidate of menu."
:type 'integer
:group 'acm-backend-ctags)
Expand Down
1 change: 1 addition & 0 deletions lsp_bridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -803,6 +803,7 @@ def ctags_find_def(self, symbol, filename):
def copilot_complete(self, position, editor_mode, file_path, relative_path, tab_size, text, insert_spaces):
self.copilot.complete(position, editor_mode, file_path, relative_path, tab_size, text, insert_spaces)

@threaded
def codeium_complete(self, cursor_offset, editor_language, tab_size, text, insert_spaces, prefix, language):
self.codeium.complete(cursor_offset, editor_language, tab_size, text, insert_spaces, prefix, language)

Expand Down

0 comments on commit 7e5ce49

Please sign in to comment.