mirror of
https://github.com/davidhalter/jedi-vim.git
synced 2025-12-07 11:14:32 +08:00
fixed type and set default value to 1 to avoid testing error
This commit is contained in:
@@ -399,7 +399,7 @@ def new_buffer(path, options=''):
|
||||
# options are what you can to edit the edit options
|
||||
if vim_eval('g:jedi#use_tabs_not_buffers') == '1':
|
||||
_tabnew(path, options)
|
||||
elif vim_eval('g:jedi#use_splits_not_buffers'):
|
||||
elif not vim_eval('g:jedi#use_splits_not_buffers') == '1':
|
||||
user_split_option = vim_eval('g:jedi#use_splits_not_buffers')
|
||||
split_options = [
|
||||
'top',
|
||||
|
||||
Reference in New Issue
Block a user