From: Michael D. Lowis Date: Mon, 2 Jan 2017 03:17:18 +0000 (-0500) Subject: rename charset.c to filetype.c X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=9d006e6b47e2af66260ad6a2ab76d68332f33b81;p=projs%2Ftide.git rename charset.c to filetype.c --- diff --git a/Makefile b/Makefile index 629cc91..277e5e9 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ INCS = -Iinc/ LIBEDIT_OBJS = \ libedit/buf.o \ - libedit/charset.o \ + libedit/filetype.o \ libedit/utf8.o \ libedit/utils.o \ libedit/exec.o \ @@ -17,7 +17,6 @@ TEST_OBJS = \ tests/utf8.o \ tests/xedit.o - include config.mk all: xedit xpick diff --git a/TODO.md b/TODO.md index 06b3278..5c163cc 100644 --- a/TODO.md +++ b/TODO.md @@ -12,7 +12,6 @@ Up Next: The Rest: -* Auto-save on focus change or quit * Implement X Selection protocol for handling clipboard and primary selections * add a distinct state for pointer move versus drag * Add a SaveAs tag that takes an argument for the filename to save as @@ -25,6 +24,7 @@ The Rest: * backspace should delete indent if preceded by whitespace * Add a ctrl+space shortcut to autocomplete ctag * off by one error on scrolling up with wrapped lines +* Auto-save on focus change or quit # Auxillary Programs diff --git a/libedit/charset.c b/libedit/filetype.c similarity index 100% rename from libedit/charset.c rename to libedit/filetype.c