unixwork
unixwork
Yes I'm sure. I haven't tried to fix this, yet.
Is this problem solved?
I can't reproduce this problem. Example: 1. open xnedit source file `source/nedit.c` 2. select `../util/misc.h` on line 53 3. *File* -> *Open Selected* This opens the file misc.h without any...
I can confirm that it doesn't work with spaces in file names. For some reason this is intentional, there is specific code to remove whitespace before trying to open the...
A session restore feature is already on my todo list and I started working on it a while ago. I can prioritize this a bit more.
Haven't experienced this bug on Linux or FreeBSD. On macOS with XQuartz, I can't even paste text into the search/replace dialog for some reason. I will look into this further.
I did some more testing but couldn't reproduce the bug. I guess it is an XQuartz problem. Maybe you can fix this problem by adding `-DXNE_TEXTFIELD` to your CFLAGS. This...
I did not add support for large files yet. (X)Nedit uses a custom text widget and it would be possible to use 64 bit integers there. But there is also...
Opening a 4+ GiB file in old nedit is not possible, because is uses 32bit internally, so you get an integer overflow. It also loads the whole file into memory,...
The limit in nedit is exactly 2147483647 bytes. After that you have an integer overflow and weird things can happen. Sometimes it doesn't crash, but sometimes it does. On my...