From: Michael D. Lowis Date: Thu, 25 May 2017 19:42:16 +0000 (-0400) Subject: reordered options for resolving external file changes X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=997b17131c3ba35b735dddf188f15453401c8776;p=projs%2Ftide.git reordered options for resolving external file changes --- diff --git a/TODO.md b/TODO.md index 8d69291..8bdfb53 100644 --- a/TODO.md +++ b/TODO.md @@ -4,7 +4,6 @@ Up Next: * ctrl+d with no selection does word selection instead of context * add config option to change default tab style -* Diagnostic messages should order options so most frequent is closest to cursor * get rid of edit wrapper script * Add a way to CD using a builtin * Ctrl+Shift+N to set a mark, Ctrl+N to jump to a mark diff --git a/xedit.c b/xedit.c index e044406..3cf472a 100644 --- a/xedit.c +++ b/xedit.c @@ -149,7 +149,7 @@ static void quit(void) { static bool changed_externally(Buf* buf) { bool modified = (buf->modtime != modtime(buf->path)); if (modified) - ondiagmsg("File modified externally: Reload, Overwrite, or {SaveAs }"); + ondiagmsg("File modified externally: {SaveAs } Overwrite Reload"); return modified; }