mirror of
https://github.com/davidhalter/jedi-vim.git
synced 2025-12-06 18:54:44 +08:00
Merge pull request #167 from zekzekus/master
fixed variable typo in deprecation function
This commit is contained in:
@@ -18,3 +18,4 @@ Mathieu Comandon (@strycore)
|
|||||||
Jean-Louis Fuchs (@ganwell)
|
Jean-Louis Fuchs (@ganwell)
|
||||||
Nick Hurley (@todesschaf)
|
Nick Hurley (@todesschaf)
|
||||||
Tinche (@Tinche)
|
Tinche (@Tinche)
|
||||||
|
Zekeriya Koc (@zekzekus)
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ let s:deprecations = {
|
|||||||
|
|
||||||
for [key, val] in items(s:deprecations)
|
for [key, val] in items(s:deprecations)
|
||||||
if exists('g:jedi#'.key)
|
if exists('g:jedi#'.key)
|
||||||
echom "'g:jedi#".key."' is deprecated. Please use 'g:jedi#".value."' instead. Sorry for the inconvenience."
|
echom "'g:jedi#".key."' is deprecated. Please use 'g:jedi#".val."' instead. Sorry for the inconvenience."
|
||||||
exe 'let g:jedi#'.val.' = g:jedi#'.key
|
exe 'let g:jedi#'.val.' = g:jedi#'.key
|
||||||
end
|
end
|
||||||
endfor
|
endfor
|
||||||
|
|||||||
Reference in New Issue
Block a user