forked from FG42/FG42
1
0
Fork 0

Rename the old fg42/autocomplete function to its new name

This commit is contained in:
Sameer Rahmani 2024-04-30 17:10:20 +01:00
parent 63b5a3d8cf
commit 1531f31d62
Signed by: lxsameer
GPG Key ID: 8741FACBF412FFA5
3 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,7 @@
"Enable cmake-ts-mode instead of the non-TS version."
:mode ("\\(?:CMakeLists\\.txt\\|\\.cmake\\)\\'" . cmake-ts-mode)
:hook
(cmake-ts-mode . fg42/autocomplete)
(cmake-ts-mode . fg42/setup-completion)
(cmake-ts-mode . fg42/ensure-lang-server)
(before-save . fg42/lang-server-format))
@ -86,7 +86,7 @@ return value of this function as well."
(add-to-list 'major-mode-remap-alist '(c-or-c++-mode . c-or-c++-ts-mode))
:hook
(c++-ts-mode . fg42/autocomplete)
(c++-ts-mode . fg42/setup-completion)
(c++-ts-mode . fg42/c-ts-mode-setup)
(c++-ts-mode . flyspell-prog-mode)
(before-save . fg42/lang-server-format))

View File

@ -32,7 +32,7 @@
:hook
(nix-mode . fg42/ensure-lang-server)
(nix-mode . fg42/autocomplete)
(nix-mode . fg42/setup-completion)
(nix-mode . flyspell-prog-mode)
:config

View File

@ -52,7 +52,7 @@
:hook
(python-ts-mode . fg42/ensure-lang-server)
(python-ts-mode . fg42/autocomplete)
(python-ts-mode . fg42/setup-completion)
(python-ts-mode . flyspell-prog-mode))