Skip to content

Commit

Permalink
Fix type declarations for some customizable settings
Browse files Browse the repository at this point in the history
  • Loading branch information
immerrr committed Oct 11, 2019
1 parent 0fe5f22 commit ffb726b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions jedi-core.el
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,8 @@ This is a list which may contain symbol(s) `pos-tip' and/or
`popup'. It determines tooltip method to use. Setting this
value to nil means to use minibuffer instead of tooltip."
:group 'jedi
:type '(list (choice (const pos-tip)
(const popup))))

:type '(repeat (choice (const pos-tip)
(const popup))))

(defcustom jedi:get-in-function-call-timeout 3000
"Cancel request to server for call signature after this period
Expand Down Expand Up @@ -263,13 +262,15 @@ use the setting like this::
You can rearrange the order to have most useful sets of arguments
at the top."
:group 'jedi
:type '(list sexp))
:type '(repeat (choice (const nil)
(const t)
(const definition))))


(defcustom jedi:doc-mode 'rst-mode
"Major mode to use when showing document."
:group 'jedi
:type 'symbol)
:type 'function)


(defcustom jedi:doc-hook '(view-mode)
Expand Down

0 comments on commit ffb726b

Please sign in to comment.