1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-24 07:53:41 +03:00

Update New flag and last save timestamp on buffer rename

Fxies #3244
This commit is contained in:
Maxime Coste 2019-12-07 15:27:23 +11:00
parent 023a65eeac
commit 42094209fd

View File

@ -156,6 +156,11 @@ bool Buffer::set_name(String name)
{ {
m_name = real_path(name); m_name = real_path(name);
m_display_name = compact_path(m_name); m_display_name = compact_path(m_name);
if (m_flags & Buffer::Flags::File and not file_exists(m_name))
{
m_flags |= Buffer::Flags::New;
m_last_save_history_id = HistoryId::Invalid;
}
} }
else else
{ {