-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
2189 lines (1427 loc) · 60.9 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Thu Jul 20 15:23:23 EDT 2006
Fix $# in shell highlighter.
Fix .in files in ftype
Tue Jul 18 14:20:39 EDT 2006
Tags file patch: allows you to put a path in TAGS environment
variable.
Thu Jul 13 09:53:31 EDT 2006
Fix possible querysave bug.
Fix query window bug: cursor was not left in original windows for
new multi-line query window thing.
Fix bug where we could not find ^@
Accept ,start,size notation only if it is correct.
Mon Jul 10 13:38:04 EDT 2006
Fix bug from undo_keep: undo_keep has to be a multiple of 2 for redo
to work properly.
Wed Jun 21 09:16:49 EDT 2006
New undo_keep option.
Thu Jun 15 14:17:03 EDT 2006
Add built-in joerc file.
Sat Jun 10 10:06:41 EST 2006
Fix menu bug: coredump on left arrow.
Tue Jun 6 22:58:41 EDT 2006
allow |comments| in gettext strings.
dnelson's patches for large files,
tty.c include file problems and $(srcdir).
Sat Jun 3 09:48:41 EDT 2006
new syntax files: m4 joerc
use hash table in rc file parser.
use hash table in syntax parser.
add auto-expanding hash table.
i18n of other single-key prompts. add joe_gettext to yncheck.
fix bug coredump when doing multi-file search and replace
Fri Jun 2 10:49:21 EDT 2006
internationalized y/n handling.
new spell check macro which uses 'language'
fix sh highlight bug: do not try to highlight $( )
Wed May 31 22:37:56 EDT 2006
query windows can now be multi-line. Also they should handle wide
characters properly.
you can now type a macro right into the ESC X prompt.
New * Startup Log * window catches .jsf file errors.
JOE 3.4 --->
Tue May 30 09:26:59 EDT 2006
Wordwrap improvements.
Fix gettext() bug foudn by egmont.
Change tag ^K ; to jump to beginning of file before doing a search.
Cygwin fixes
Missing @JOERC@ in joerc.in
Fri May 26 11:13:10 EDT 2006
Autoindent now happens for word-wrap.
Fix ':include' so that it searches ~/.joe and JOERC
Put file type table in a separate file.
Limit no. yank records stored in .joe_state
new '-transpose' flag transposes all menus.
more columns for line number
Wed May 24 11:01:53 EDT 2006
Rearrange directories.
Check for localized joerc file, like joerc.ru.
Only complain if lock already exists on a file.
Give file changed under us notice only once.
New -help_is_utf8 option- allows help text to be either UTF-8 or
8-bit.
Restore cursor position works for ^K E
Improve sh highlighter
Rearrange again: now we use SUBDIRS
Tue May 23 17:28:48 EDT 2006
Switch to my own gettext() library.
Mon May 22 23:35:21 EDT 2006
Fix shell highlighting bugs.
Clean up ^T options display.
Fix querysave bug (it was not always saving everything!)
Add Russion .po file.
Get gettext() to actually work.
Add -restore option.
2006-05-22 gettextize <bug-gnu-gettext@gnu.org>
* Makefile.am (ACLOCAL_AMFLAGS): New variable.
(EXTRA_DIST): Add m4/ChangeLog.
2006-05-22 gettextize <bug-gnu-gettext@gnu.org>
* Makefile.am (SUBDIRS): New variable.
(ACLOCAL_AMFLAGS): New variable.
(EXTRA_DIST): Add config.rpath.
* configure.ac (AC_CONFIG_FILES): Add po/Makefile.in, m4/Makefile.
Sun May 21 12:28:10 EST 2006
'e' option for search & replace.
Add -guess_utf8 and -guess_non_utf8 options.
Add gettext() support.
Sat May 20 17:03:48 EDT 2006
Improve compile window
Jump to previous file cursor position.
'a' option for search & replace.
Fri May 19 13:29:11 EDT 2006
Add REX. Fix highlighter subroutine bugs.
Update php, html, css and java highlighters to take
advantage of subroutines.
Add LUA
Heredoc support for PHP
Add Ruby
Eliminate ^# from *rc files. This is only used in Amiga, and it
screws up i18n.
Assume256 color now uses normal entry for colors less than t->Co.
Tue May 16 01:31:16 EDT 2006
Get rid of last type punning warning.
Add subroutines to syntax highlighter.
Fix .tcl highlighting glitch.
Sun May 14 12:20:40 EDT 2006
cleanup header files.
gcc-4.1.0 -Wall run: fixed all but two warnings.
Precompiled headers now work. Try: "gcc -O2 -g types.h" before
building. Saves 15 seconds out of a 95 second build.
Change SCREEN to Screen
Fri May 12 15:39:12 EDT 2006
fix lattr bugs.
Thu May 11 10:27:47 EDT 2006
Add skill syntax file.
Fix semi_comment bug.
^K E does not now ask to load original for scratch buffers.
ESC SPACE now consults line number tracking database
Fix diff highlighter bugs
Tue May 9 11:15:22 EDT 2006
Fix some compiler warnings.
Mon May 8 15:35:20 EDT 2006
Convert to proper character set in %x
Guess encoding.
Fri May 5 10:24:33 EDT 2006
You can now define which characters can indent paragraphs in joerc
file: look for '-cpara' in joerc file.
Allow escape sequences in syntax highlight strings.
Fix ^L so that it works the first time.
Fix input redirection.
Wed May 3 21:10:21 EDT 2006
Better handling of 'joe -'
Wed May 3 16:59:06 EDT 2006
Improve speed of highlighting. Now it's comparable to JED's
highlighter. (VIM and emacs are 10x slower).
Also it should now correctly handle the case of two windows open
on a file, each with a different syntax.
Fri Apr 28 15:07:21 EDT 2006
Yeah! Xterm-212 now works properly with joe. The '-joexterm' option
now works without having to do any patches.
Note that xterm should be compiled with '--enable-paste64 and
--enable-256-color'
Tue Mar 7 23:28:47 EST 2006
Add joe_debug command. Fix pointer leak (caused paragraph reformat
to be very slow).
Sun Mar 5 12:46:27 EST 2006
Fix range of %p
Allow setting of foreground and background colors.
Fix search problems with ^ $
Backward search now moves cursor beginning of insertion point.
Still need to fix bugs with undo in search.
Sat Mar 4 21:59:22 EST 2006
Highlight python docstrings the same as regular strings.
Fix bug with -assume_256color: missing ; in escape sequence
Fix .php variable highlighting
File selection menu is now above prompt instead of below it. This
needs to be an option.
Added new "-menu_above" option.
Fix pgup/pgdn to work with menu_above.
Wed Mar 1 10:19:49 EST 2006
Match how Thomas Dickey implemented the xterm-paste patch.
Xterm has a bug: if selection is not owned by xterm, the string
is messed up.
Tue Feb 28 18:50:32 EST 2006
Fix bug where 'complete' command core dumps.
Fix bug where '.' alone with c highlighting enabled core dumps.
Don't run editor if joerc file is bad.
Improve lock messages.
Mon Feb 27 01:34:37 EST 2006
Fix perl highlighter bug. $q not handled properly.
Show properly escaped previous search string
Thu Feb 23 13:41:20 EST 2006
Fix bugs with quoted entry. Now we ignore terminal's encoding on
quoted entry.
Sun Feb 19 22:34:20 EST 2006
Fix some bugs on itanium: call to joe_malloc was return a (int) and
then got converted to a pointer. Likewise with things in termcap.c which
needed term.h and curses.h.
Improved speed of highlighting.
Tue Dec 27 16:56:44 EST 2005
Allow entry of replacement blank replacement strings when search
prompting is enabled (basically eliminate automatic replace-string
prompting).
"bufed" now works like other file name commands (it prompts for a
buffer name, and allows completion).
H-scroll jumps left ~ 10 cols (this needs more work: it should be an
option).
Tue May 17 18:20:02 EDT 2005
Release JOE 3.3
Tue May 3 13:33:21 EDT 2005
Add .cc file type
Sun Apr 24 00:16:25 EDT 2005
Fix compiler warnings from gcc-4.0.0
Fri Apr 22 00:47:55 EDT 2005
Fix ctrl-select bug when near buffer edges
Don't use nl_langinfo(CODESET) in Cygwin.
Add Ada syntax file
Thu Apr 21 15:46:09 EDT 2005
Add some grep find support:
ESC g execute grep
ESC SP jump to "file line:"
Add xterm-patch to make dist.
Sun Apr 17 12:05:32 EDT 2005
Scripts for Cygwin.
Version numbering scheme for Cygwin.
Fri Apr 8 10:27:24 EDT 2005
Add awk syntax file
Use c syntax file for yacc
Use c syntax file for lex
Add cobol syntax file
Add sed syntax file
Add postscript syntax file
Thu Apr 7 18:25:07 EDT 2005
Add sql syntax file
Wed Apr 6 12:39:15 EDT 2005
New xterm-patch: base64 encode the data to avoid security hole
Fri Apr 1 00:14:58 EST 2005
Improve jpico: add -search_prompting option.
Fix ^X ^S bug (was using vsdup() on a non-dynamic string).
Add autoscrolling (when mouse goes past window edge).
Wed Mar 30 23:47:00 EST 2005
New xterm-patch fixes i18n problems with mouse.
Tue Mar 29 19:19:42 EST 2005
Fix some cut & paste bugs.
Wheel can scroll menus.
Fix bugs with mouse in hex mode, prompt windows
and when line numbers enabled.
Prevent hex mode from prompt windows.
Fix some i18n issues with mouse: xterm patch
needs to be fixed.
Mon Mar 28 02:17:37 EST 2005
Apply (and fix) background color patch
Allow background color to be set on object-by-object basis.
Sat Mar 26 09:56:23 EST 2005
Fix some window resize bugs
Add support for 16 and 256 color xterms.
Sat Mar 26 00:28:58 EST 2005
Reformat mouse.c
Apply diff patch
Apply vpath patch
Apply electrum's mouse patch (send mouse off code during
shell escape)
Mouse can now resize windows
Mouse can position cursor in menus. Double-click selects
an item. Need to add scroll.
--- JOE 3.3 begins ---
Mon Mar 21 11:56:56 EST 2005
Fix segfault problem
Xcol problems in hex mode
Backspace in overtype mode (picture mode
needs work).
Don't use paths which begin with ! as directories.
Fix more segfault problems: use doswitch instead of doedit.
Don't lock scratch buffers.
Run gcc -pedantic
Sun Mar 20 11:54:44 EST 2005
Hex edit mode
Do not CD from names on command line
Support for wheel mouse
Sat Mar 19 17:08:05 EST 2005
Fix != in math prompt
Add modifiers to macros
Improve jmacs
Jmacs: orphaned buffers were not having locks deleted
Fix bug where formatting characters working in context display
ubknd and urun were not checking for read only
Prompt with latest directory
Fri Mar 18 16:15:19 EST 2005
Change so that ` up-arrow (or any key) goes to shell.
Prefer bash over sh for shell.
Thu Mar 17 18:54:06 EST 2005
Get joe to compile on irix
Enable .joe_state file
Document 'backpath' bad parsing
Put version number in state file
Save command line file names in joe_state file
Fix ufilt (broke with irix fix)
Fix if (-s ...) in perl
Parse *rc file only once
Wed Mar 16 11:04:19 EST 2005
Check if system joerc file is newer than local joerc file.
Fix line number reporting for joerc file errors.
Add ! operator to math (factorial and logical not)
Make ~ expansion occur at user level, not low level.
(otherwise ~ appears in b->name, which screws up
many things unless ~ is really part of the file
name).
Make tab completion work for user names.
uname() was shadowing a system call.
Tue Mar 15 14:18:53 EST 2005
Fix processing of joe.1.in -> joe.1 so
that paths are properly set up.
Add file changed under us checking.
Mon Mar 14 11:34:56 EST 2005
Fix some math and first change bugs.
Allow for file names which begin with +
Fix bug where menu wasn't being resized.
Fix processing of joerc.in -> joerc so that
paths are properly set up (added sed script
to Makefile.am).
Sun Mar 13 12:39:18 EST 2005
Fix -mnew and -mold when there are multiple
files on command line.
Add optional file locking.
Add joe() math command. Executes JOE macro, and
returns success value as result.
Added sys command: execute a shell command with
I/O connected to terminal, not editor. Return
value of shell command is success value of command.
rdonly flag is available as math variable.
Added perforce macro. Fixed some "if" bugs.
Sat Mar 12 00:31:23 EST 2005
Update other *rc files.
Fix some marking bugs in jpico.
Allow colors to be specified in joerc file
Improve perl again.
^D in prompts brings up menu
Fix ^X a in jmacs
Fix ^X ^I in jmacs (neg arg is broken)
Fri Mar 11 2005 Joe Allen <jhallen@world.std.com>
Help text points to doc files
Wed Mar 9 2005 Joe Allen <jhallen@world.std.com>
^K W now prints a success message.
More perl highlighter fixes.
Sat Mar 5 2005 Joe Allen <jhallen@world.std.com>
Fix bug where ^KC to copy text into search
prompt was not working (search was taking
over selected block too early).
Fri Mar 4 2005 Joe Allen <jhallen@world.std.com>
Add block evaluator and ? operator to math
(now it can loop via. recursion :-)
Add #if #else #endif matching.
Get ^G working for VHDL (VHDL sucks).
Disable ^K E and ^K ' in prompt windows.
open ^] now autoindents (again).
Fix jpico lock-up problem (lmargin option was
not checking for invalid value of 0).
Accept buffer overflow patch.
-square is not a local option.
Thu Mar 3 2005 Joe Allen <jhallen@world.std.com>
New help screen for math.
Add statistics functions.
Wed Mar 2 2005 Joe Allen <jhallen@world.std.com>
Fix pointer leak.
Make option to enable mouse support
Change .joe_state file to use \ for escape
Improve math
Ignore <a/> in Ctrl-G
Wed Mar 2 2005 Joe Allen <jhallen@world.std.com>
Fix warnings from various syntax files (can't
believe I didn't notice this...)
Add -menu_jump option
Tue Mar 1 2005 Joe Allen <jhallen@world.std.com>
Allow :s in xml names.
Fix 'keymap' command.
Add 'name' command.
Mon Feb 28 2005 Joe Allen <jhallen@world.std.com>
User defined text delimiters
XML delimiter matching
Sun Feb 27 2005 Joe Allen <jhallen@world.std.com>
Fix lockup problem from Ctrl-G
Fix bugs with new 'if' command.
Sun Feb 27 2005 Joe Allen <jhallen@world.std.com>
Added Jesse McGrew's xterm mouse and macro enhancements:
added to math: %, ==, !=, >, >=, <, <= operators,
plus 'char' is ascii value of character under cursor.
added functions: if, then, elsif, endif
Needs work:
'if' crashes.
xterm selections don't paste into other windows.
Sat Feb 26 2005 Joe Allen <jhallen@world.std.com>
Tab complete for ^K ; (tags search).
Sat Feb 26 2005 Joe Allen <jhallen@world.std.com>
Allow '-' in file names in compiler error parser.
Sat Feb 26 2005 Joe Allen <jhallen@world.std.com>
Accept patch from Kalan (thearinkalen at users.sourceforge.net)
which makes save block prompt if a file is to be overwritten.
Accept patch from sth2000 at users.sourceforge.net which improves
wordwrap when overtype mode is enabled.
Fri Feb 25 2005 Joe Allen <jhallen@world.std.com>
Fix bash highlighter bug: $" " and $' ' are strings.
Ctrl-G starts a search if it doesn't know word under cursor.
Sun Feb 20 2005 Joe Allen <jhallen@world.std.com>
Fix perl highlighter bug: \"fdfdg" is a string.
Sun Feb 20 2005 Joe Allen <jhallen@world.std.com>
Greatly enhanced ^G (goto matching delimiter) so that it understands
quoting and comments and can operate on word delimiters
(begin...end).
Sun Feb 20 2005 Joe Allen <jhallen@world.std.com>
Fix perl highlighter bug: words ending in q
got confused with 'q'.
Wed Jan 19 2005 Joe Allen <jhallen@world.std.com>
New Pascal highlighter for Delphi and FPC
Mon Dec 13 2004 Joe Allen <jhallen@world.std.com>
Accept SML syntax file.
Mon Nov 29 2004 Joe Allen <jhallen@world.std.com>
Accept OCaml and 4GL syntax files.
Accept UTF-8 in help file patch. Help text is now
UTF-8.
Mon Aug 9 2004 Joe Allen <jhallen@world.std.com>
Fix bug in joe_state code: buffer was not
large enough.
Thu Jul 8 2004 Joe Allen <jhallen@world.std.com>
Merge last two changes (described below...)
Tue Jul 6 2004 Pavel Fedin <sonimiga@rambler.ru>
Changed some fork()s to vfork()s.
Added ^# (CSI = 0x9B) control character.
Added Amiga CSI sequences to keys definitions in joerc files.
Added some #ifdef's to compile properly on AmigaOS.
Tue Jun 22 2004 Joe Allen <jhallen@world.std.com>
~/.joe_state file:
Saves macros, yanks records, and file name history in a file.
Mon Jun 7 2004 Joe Allen <jhallen@world.std.com>
Highlighter state now includes a saved string.
This improves shell and perl highlighters.
sze jún 2 2004 Joe Allen <jhallen@world.std.com>
Fix for archaic systems (BSD) with no nl_langinfo(CODESET).
Tue Jun 1 2004 Joe Allen <jhallen@world.std.com>
Minor fix to c.jsf.in
Recognize a bunch of other mail/news files.
Sat May 29 2004 Joe Allen <jhallen@world.std.com>
Use 'aspell' if it exists.
Set Home, End, Insert, Del key bindings, assuming termcap
entry is wrong.
Fri May 28 2004 Joe Allen <jhallen@world.std.com>
Status line updates even if you keep typing.
Fri May 28 2004 Joe Allen <jhallen@world.std.com>
Now it will use sprintf if snprintf does not exist.
Can now build on IRIX 6.2
Thu May 27 2004 Joe Allen <jhallen@world.std.com>
Fix segfault due to bad management of 'pieces' in rc/setopt().
Thu May 27 2004 Joe Allen <jhallen@world.std.com>
Added asm.jsf.in.
Thu May 27 2004 Joe Allen <jhallen@world.std.com>
Added diff.jsf.in.
Added improved xml.jsf.in
Wed May 26 2004 Joe Allen <jhallen@world.std.com>
Fix lockup problem: do not allow querysave in
prompt windows.
Tue May 25 2004 Joe Allen <jhallen@world.std.com>
Character set aliases now appear in ^T E tab
completion.
Mon May 24 2004 Joe Allen <jhallen@world.std.com>
Fix bg_reg -> bg_red.
Now we understand aliases for character maps, like latin1 ->
iso-8859-1 and 8859-1 -> iso-8859-1.
Mon May 24 2004 Joe Allen <jhallen@world.std.com>
Smart indent and backspace now work even if cursor
is not right at indentation point. Also autoindent
does not happen if cursor is on a space or tab character.
Jmacs: ^W (cut) now works if mark is after point. (Added -autoswap
mode). Also: preserve mark and point positions during block
operations.
Wed May 19 2004 Joe Allen <jhallen@world.std.com>
Allow options after strings in syntax files.
Wed May 19 2004 Joe Allen <jhallen@world.std.com>
More fixes for Cygwin: shell windows now
work properly.
Tue May 18 2004 Joe Allen <jhallen@world.std.com>
Changed ESC y to yank in joerc. Left ESC ^Y
as yankpop.
Added "spring" escape sequence for help text.
Mon May 17 2004 Joe Allen <jhallen@world.std.com>
Fix backspace handling in shell windows.
Ring bell when we get ^G.
Sun May 16 2004 Joe Allen <jhallen@world.std.com>
Fix -syntax and -encoding on command line.
Check for "pty.h" when openpty is used.
Sun May 16 2004 Joe Allen <jhallen@world.std.com>
Fix mason bug.
Change ^K ^M back to move block.
^K H in jstar mode is "nmark".
Fri May 14 2004 Joe Allen <jhallen@world.std.com>
Mason highlighter
Fri May 14 2004 Joe Allen <jhallen@world.std.com>
Many jpicorc.in improvements.
Thu May 13 2004 Joe Allen <jhallen@world.std.com>
Improve exit messages.
Improve 'lose' which is for jmacs.
Improve ^X for jpico.
Got rid of "end of processs" message in shell windows.
Shell windows can now be orphaned and duplicated (process
is associated with B instead of BW).
Shell window input taken from cmd.c instead of in
actual edit functions.
Improved 'lose' again- now it fill in windows with any
orphaned buffers it can find.
Thu May 13 2004 Joe Allen <jhallen@world.std.com>
Small compile fix.
Wed May 12 2004 Joe Allen <jhallen@world.std.com>
Compile now uses shell window (so you can hit ^C during the
compile.
Shell window termination code fix: now all of the output always
makes it to the window.
Added query save loop to save all modified files before build.
Added scratch buffers: they are ignored during ^K X, ^C and
querysave.
^X ^C is now much more like emacs.
Fixed annoying occasional screen update glitch: it was caused
by SIGALRM causing dropped output in Linux (doesn't happen on
SUN). So now we arm SIGALRM only when waiting for input. (SIGALRM
is used to keep the clock updated).
Wed May 12 2004 Joe Allen <jhallen@world.std.com>
Applied Olexiy Avramchenko's <olexiy@irtech.cn.ua> patch
on configure.ac. Also added mail.jsf.in to Makefile.am
Applied Yura Kalinichenko's <yuk@iceb.vinnitsa.com> "openpty"
patch.
Tue May 11 2004 Joe Allen <jhallen@world.std.com>
Added "upper" and "lower" functions (no longer
depend on "tr" command).
Fix jmacs transpose word command.
Tue May 11 2004 Joe Allen <jhallen@world.std.com>
Fix marking mode so only window with cursor is
effected.
Ctrl-space clears selection when cursor is in
selection, otherwise it starts a new one.
^K E prompts to load original file from disk.
Tue May 11 2004 Joe Allen <jhallen@world.std.com>
* b.c ufile.c :
Update file date on save.
Improve Ctrl-<space> marking.
Mon May 10 2004 Joe Allen <jhallen@world.std.com>
* ufile.c b.c :
Warns if file changed on save.
Add 'beep' function and updated jmacsrc.in
Mon May 10 2004 Joe Allen <jhallen@world.std.com>
* usearch.c, uisrch.c:
Added '-wrap' flag. Search wraps when set.
Mon May 10 2004 Joe Allen <jhallen@world.std.com>
* *rc.in :
More globs: .cpp, .hpp, .c++, .h++
Mon May 10 2004 Joe Allen <jhallen@world.std.com>
* b.c tw.c :
New status line escape sequence: %x shows current context (function
cursor is in).
More globs in *rc.in files.
csh.jsf lisp.jsf
Sun May 9 02:30:41 EDT 2004
* sh.jsf.in :
Improved shell script highlighter.
Fix spelling errors in joe.1.in
Sat May 8 2004 Joe Allen <jhallen@world.std.com>
* usearch.c :
Fixed bug in tab completion in text windows.
Change tab completion key to ^K <return>
Fri May 7 22:37:49 EDT 2004
* usearch.c :
Tab completion at search prompt.
ESC-Tab completes within text windows.
Fri May 7 16:02:21 EDT 2004
* usearch.c, uisrch.c :
Added case insensitive by default option.
Fri May 7 2004 Joe Allen <jhallen@world.std.com>
* main.c, menu.c, pw.c, qw.c, rc.c, tab.c :
joe a b c, now windows are in order a, b, c.
TAB completion now works on last path in prompt window:
for example '!ls foo', tab will complete the foo.
Added menu_explorer option. When set: menu stays up when
a directory is seleted. When clear: directory is added
to path and menu is closed.
Menus are now 40% of window size (or smaller if they are
not filled).
Cursor is now position after selected menu entry.
Thu May 6 2004 Joe Allen <jhallen@world.std.com>
* umenu.c :
TAB key now cycles through menu entries. This is useful
for tab completion: just keep hitting tab until you see the
file you want, then hit enter.
TAB completion is more "bash"-like: if you complete a directory
name a menu does not appear, the directory just gets added to the
prompt.
Thu May 6 2004 Joe Allen <jhallen@world.std.com>
* ublock.c :
Added "select" function for Ctrl-arrow selecting.