mirror of
https://github.com/mhinz/neovim-remote
synced 2024-11-11 13:10:34 +00:00
Revert "Temporarily reset &modified when opening files"
This reverts commit 6845b8b5a6
.
This commit is contained in:
parent
6845b8b5a6
commit
64e9f486a1
@ -100,10 +100,6 @@ class Neovim():
|
||||
if not self.is_attached(silent):
|
||||
return
|
||||
|
||||
modified = self.server.current.buffer.options['modified']
|
||||
if modified:
|
||||
self.server.current.buffer.options['modified'] = False
|
||||
|
||||
cmds, files = split_cmds_from_files(arguments)
|
||||
|
||||
for fname in files:
|
||||
@ -130,9 +126,6 @@ class Neovim():
|
||||
for cmd in cmds:
|
||||
self.server.command(cmd if cmd else '$')
|
||||
|
||||
if modified:
|
||||
self.server.current.buffer.options['modified'] = True
|
||||
|
||||
return len(files)
|
||||
|
||||
def _show_msg(self, old_address):
|
||||
|
Loading…
Reference in New Issue
Block a user