From 9d006e6b47e2af66260ad6a2ab76d68332f33b81 Mon Sep 17 00:00:00 2001 From: "Michael D. Lowis" Date: Sun, 1 Jan 2017 22:17:18 -0500 Subject: [PATCH] rename charset.c to filetype.c --- Makefile | 3 +-- TODO.md | 2 +- libedit/{charset.c => filetype.c} | 0 3 files changed, 2 insertions(+), 3 deletions(-) rename libedit/{charset.c => filetype.c} (100%) 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 -- 2.51.0