File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change 39
39
(default-value 'ac-sources ))
40
40
" Extra `ac-sources' used in notebook." )
41
41
42
+ (make-obsolete-variable 'ein:ac-max-cache nil " 0.1.2" )
42
43
(defcustom ein:ac-max-cache 1000
43
- " Maximum number of cache to store."
44
+ " [This value is not used anymore!]
45
+ Maximum number of cache to store."
44
46
:type 'integer
45
47
:group 'ein )
46
48
79
81
80
82
; ;; AC Source
81
83
82
- (defvar ein:ac-cache-matches nil )
83
-
84
84
(defvar ein:ac-direct-matches nil
85
85
" Variable to store completion candidates for `auto-completion' ." )
86
86
; ; FIXME: Maybe this should be buffer-local?
@@ -140,11 +140,6 @@ compatibility with `ein:completer-finish-completing-default'."
140
140
(ac-start))))
141
141
; ; Why `ac-start' ? See: `jedi:complete' .
142
142
143
- (defun ein:ac-clear-cache ()
144
- (setq ein:ac-cache-matches
145
- (setcdr (nthcdr (1- ein:ac-max-cache)
146
- (delete-dups ein:ac-cache-matches)) nil )))
147
-
148
143
149
144
; ;; Async document request hack
150
145
You can’t perform that action at this time.
0 commit comments