Mark unsaved named files as dirty (#1598)
This commit is contained in:
parent
82589526c0
commit
1ad3b70e9e
|
@ -123,6 +123,7 @@ end
|
|||
|
||||
function Doc:is_dirty()
|
||||
if self.new_file then
|
||||
if self.filename then return true end
|
||||
return #self.lines > 1 or #self.lines[1] > 1
|
||||
else
|
||||
return self.clean_change_id ~= self:get_change_id()
|
||||
|
|
Loading…
Reference in New Issue