Skip to content

Commit

Permalink
Add missing require
Browse files Browse the repository at this point in the history
This fixes the following error when using the tabnine-chat command:

"funcall: Symbol’s function definition is void: tabnine-chat-curl-get-response"
  • Loading branch information
RobotDisco authored Apr 14, 2024
1 parent a466299 commit d60b556
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tabnine.el
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
;;; tabnine.el --- An unofficial TabNine package with TabNine Chat supported -*- lexical-binding: t -*-
;;
;; Copyright (c) 2023 Aaron Ji
;; Copyright (c) 2024 Aaron Ji
;;
;; Author: Aaron Ji <[email protected]>
;; Tommy Xiang <[email protected]>
;; John Gong <[email protected]>
;;
;; Version: 0.0.1
;; Version: 0.0.2
;; Package-Requires: ((emacs "29.1") (dash "2.16.0") (s "1.12.0") (editorconfig "0.9.1") (vterm "0.0.2") (language-id "0.5.1") (transient "0.4.0"))
;; Keywords: convenience
;; URL: https://github.com/shuxiao9058/tabnine/
Expand Down Expand Up @@ -55,6 +55,7 @@

(require 'tabnine-core)
(require 'tabnine-chat)
(require 'tabnine-chat-curl)
(require 'tabnine-chat-transient)

(provide 'tabnine)
Expand Down

0 comments on commit d60b556

Please sign in to comment.