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:
parent
931f6bf55f
commit
29c0f06f68
2
nvr
2
nvr
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user