From: Alan Knowles Date: Fri, 25 Aug 2017 05:34:49 +0000 (+0800) Subject: GitMonitor.vala X-Git-Url: http://git.roojs.org/?p=gitlive;a=commitdiff_plain;h=8161cff4a424632b9f08a329433980575e82cfec GitMonitor.vala --- diff --git a/GitMonitor.vala b/GitMonitor.vala index e2cc9205..a3d0ad7a 100644 --- a/GitMonitor.vala +++ b/GitMonitor.vala @@ -58,7 +58,7 @@ public class GitMonitorQueue : MonitorNamePathDir { public bool shouldIgnore() { - + // vim.. what a seriously brain dead program.. if (this.name == "4913") { return true; @@ -69,10 +69,13 @@ public class GitMonitorQueue : MonitorNamePathDir { if (this.name == ".htaccess") { return false; } - + if (this.name == ".gitignore") { + return false; + } return true; } + if (this.name[this.name.length -1] == '~') { return true; } @@ -569,6 +572,7 @@ public class GitMonitor : Monitor if (/nothing to commit, working tree clean/.match(e.message)) { success += e.message; + this.paused = false; continue; }