2
0
mirror of https://github.com/mhinz/neovim-remote synced 2024-11-11 13:10:34 +00:00

Add default clause for --remote-expr

This commit is contained in:
Marco Hinz 2015-12-16 18:07:24 +01:00
parent 931f6bf55f
commit 29c0f06f68

2
nvr
View File

@ -159,6 +159,8 @@ def main():
print(list(map(lambda x: x.decode() if type(x) is bytes else x, result)))
elif type(result) is dict:
print({ (k.decode() if type(k) is bytes else k): v for (k,v) in result.items() })
else:
print(result)
if unused and n.attached(silent=True):
for fname in unused: