summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--README.md4
-rw-r--r--main.c2
3 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 94fa92c..e1f14f7 100644
--- a/Makefile
+++ b/Makefile
@@ -5,6 +5,8 @@ LIBS=-lSDL2 -lGL -lm libpcre2-32.a
DEBUG_CFLAGS=$(ALL_CFLAGS) -DDEBUG -O0 -g
RELEASE_CFLAGS=$(ALL_CFLAGS) -O3
PROFILE_CFLAGS=$(ALL_CFLAGS) -O3 -DPROFILE=1
+# if you change the directories below, ted won't work.
+# we don't yet have support for using different data directories
GLOBAL_DATA_DIR=/usr/share/ted
LOCAL_DATA_DIR=/home/`logname`/.local/share/ted
INSTALL_BIN_DIR=/usr/bin
diff --git a/README.md b/README.md
index 776c45e..a091504 100644
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@ in other editors.
## Supported features
-- Customization of (pretty much) all colours and keyboard commands.
+- Customization of (pretty much) all colors and keyboard commands.
- Basic text editing like copy+paste, undo+redo, etc.
- Multiple tabs, each with a different file
- Split screen
@@ -143,6 +143,8 @@ Then, open windows\_installer\\ted\\ted.sln, and build.
<tr><td>0.7</td> <td>Restore session, command selector, :shell, big bug fixes</td> <td>2021 Mar 3</td></tr>
<tr><td>0.8</td> <td>Autocomplete</td> <td>2021 Mar 4</td></tr>
<tr><td>1.0</td> <td>Bugfixes, small additional features, installers</td> <td>2021 Apr 20</td></tr>
+<tr><td>1.0r1</td> <td>Windows-specific bugfixes, update to new version of PCRE2</td> <td>2022 Jan 1</td></tr>
+<tr><td>1.0r2</td> <td>Various ctrl+w (:tab-close) bugfixes</td> <td>2022 Mar 26</td></tr>
</table>
## License
diff --git a/main.c b/main.c
index 00dc5fe..be1d2f0 100644
--- a/main.c
+++ b/main.c
@@ -317,7 +317,7 @@ int main(int argc, char **argv) {
// make sure signal handler has access to ted.
error_signal_handler_ted = ted;
- { // get local data directory
+ { // get local and global data directory
#if _WIN32
wchar_t *appdata = NULL;
KNOWNFOLDERID id = FOLDERID_LocalAppData;