Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: evaluate v:true/v:false to python bool type #506

Merged
merged 1 commit into from
May 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pynvim/plugin/script_host.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def writelines(self, seq):


def num_to_str(obj):
if isinstance(obj, num_types):
if isinstance(obj, num_types) and not isinstance(obj, bool):
return str(obj)
else:
return obj
Expand Down
7 changes: 7 additions & 0 deletions test/test_host.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,10 @@ def test_host_async_error(vim):
assert event[1] == 'nvim_error_event'
assert 'rplugin-host: Async request caused an error:\nboom\n' \
in h._on_error_event(None, 'boom')

def test_legacy_vim_eval(vim):
h = ScriptHost(vim)
assert h.legacy_vim.eval('1') == '1'
assert h.legacy_vim.eval('v:null') == None
assert h.legacy_vim.eval('v:true') == True
assert h.legacy_vim.eval('v:false') == False