1. 8faf305 add paragraph searching ability by David Lawrence Ramsey · 21 years ago
  2. aaad3af documentation updates by David Lawrence Ramsey · 21 years ago
  3. 2786366 fix Meta-X's turning the keypad off under ncurses by David Lawrence Ramsey · 21 years ago
  4. a9cebd8 remove unneeded breaks at the ends of default: clauses by David Lawrence Ramsey · 21 years ago
  5. 4d7c260 low-level input overhaul by David Lawrence Ramsey · 21 years ago
  6. f9390af Remove gettext marks from debug messages. by Jordi Mallach · 21 years ago
  7. 70047ee by David Lawrence Ramsey · 21 years ago
  8. 8151ba5 DLR's patch to change justify_mode to a flag by Chris Allegretta · 22 years ago
  9. e1e0fd6 DLR and DB's latest fixes by Chris Allegretta · 22 years ago
  10. d845193 DLR's cumulative patch, one minor configure.ac tweak by Chris Allegretta · 22 years ago
  11. a7a78de - nano.c:justify_format() - Fix ugly behavior when wrapping spaces at the end of long words (David Benbennick) by Chris Allegretta · 22 years ago
  12. bcc8688 - Remove do_preserve_msg, as using -p still gives Pico-style string behavior, so an annoying message every invocation is probably unneeded (all cheer) by Chris Allegretta · 22 years ago
  13. d0845df Oops, we should probably re-initialize keyhandled each iteration of the main loop ;-) by Chris Allegretta · 22 years ago
  14. fe1d072 - nano.c:main() - Silence annoying compiler messages about clobbering and uninitialized variables by moving variable inits to the top of main() and re-initializing them after the sigsetjmp() by Chris Allegretta · 22 years ago
  15. 7641708 - nano.c:do_suspend() - Fix untranslated message (David Benbennick) by Chris Allegretta · 22 years ago
  16. d127c71 - nano.c:do_wrap() - Fix isspace() call to operate on int by Chris Allegretta · 22 years ago
  17. 428f620 DB's justify fixes by Chris Allegretta · 22 years ago
  18. fdcb9e9 - Memory leak fixes for files.c:do_insertfile(),do_browser(), nano.c:do_spell(), and search.c:do_replace() (David Benbennick) by Chris Allegretta · 22 years ago
  19. f8f2d58 DB's fill and window length fixes by Chris Allegretta · 22 years ago
  20. 3a78406 - nano.c:help_init() - Fix crashing in do_help when COLS < 23 (David Benbennick) by Chris Allegretta · 22 years ago
  21. 201f1d9 - Fix globals and externs such that nano will compile with DISABLE_SPELLER (David Benbennick) by Chris Allegretta · 22 years ago
  22. 5ec6862 - Fix nano not compiling with ENABLE_RCFILE BLE_TABCOMP (David Benbennick) by Chris Allegretta · 22 years ago
  23. a0d8997 - Fix screen getting trashed on signals nano can catch (TERM and HUP). New global variable curses_ended changes to winio.c:statubar() and nano.c:die() by Chris Allegretta · 22 years ago
  24. cff6e6f DB's justify patch by Chris Allegretta · 22 years ago
  25. 2a7b8b2 -nano.c:do_justify() - Unset KEEP_CUTBUFFER so nano won't crash with subsequent ^K cuts and justifies (David Benbennick) by Chris Allegretta · 22 years ago
  26. e92a7bc - nano.c:do_mouse() - Fix the mouse code to work with lines longer than COLS and with the proper positioning, including special characters (David Benbennick) by Chris Allegretta · 22 years ago
  27. d26ab91 - Fix constant curos updates from obliterating other system messages, and fix statusbar message length. Affects files.c:load_open_file(), nano.c:main(), search.c:findnextstr(), winio.c:statusbar() and do_cursorpos() (David Benbennick) by Chris Allegretta · 22 years ago
  28. a340766 - nano.c:do_char() - Remove unneeded check_statblank() (David Benbennick) by Chris Allegretta · 22 years ago
  29. 64fc78c - nano.c:do_int_spell_fix(), do_int_speller() - Fix crashes with mark position, current_x position and edit_update args (David Benbennick) by Chris Allegretta · 22 years ago
  30. 1a128af - nano.c:window_init() - Fix leaking *WINDOWs (no pun intended) (David Benbennick) by Chris Allegretta · 22 years ago
  31. 0e86e60 - Changed some translatable debug messages to use %s instead of the function name, and removed gettext from two strings that had no actual words in them that should be translated. Suggested originally by Christian Rose by Chris Allegretta · 22 years ago
  32. 36fec72 nano.c:usage() - Revamp -H option message to fit in 80 column terminal by Chris Allegretta · 22 years ago
  33. 3d459ad nano.c:main() - Call load_file with arg 0 for insert, as we aren't really doing an insert, allows new_file() to run if we open a non-file at startup by Chris Allegretta · 22 years ago
  34. eeb5004 i18n fixes. by Jordi Mallach · 22 years ago
  35. e660037 nano.c:version() - Move up check for --disable-nls as it's independent of --enable-tiny now (DLR) by Chris Allegretta · 22 years ago
  36. f3de8b5 - Added search/replace history log. Flag -H, --historylog. Flags HISTORY_CHANGED and HISTORYLOG, added entries in nanorc.sample, new functions log_history and save_history (Ken Tyler) by Chris Allegretta · 22 years ago
  37. 09fc430 DLR's latest bits by Chris Allegretta · 22 years ago
  38. 2d5fc3a - nano.c:do_int_speller() - Fix FD leaks which occur outside of errors (David Benbennick) by Chris Allegretta · 22 years ago
  39. d757e25 Update copyright notices, courtesy of mr DLR by Chris Allegretta · 22 years ago
  40. 908f770 Back out the changes I made to nano.c to catch the spelling scroll bug earlier by Chris Allegretta · 22 years ago
  41. 0e7a3f5 - Fixed awful scrolling in do_int_speller. Problem was findnextstr() calling edit_update(), though screen updating is not its business Added checks in do_search() and do_replace_loop() to do the checks. It really should not be done here, as some function in winio.c should handle this, but I can't seem to find a good place to put this check by Chris Allegretta · 22 years ago
  42. 7662c86 DLR and DB's latest fixes by Chris Allegretta · 22 years ago
  43. 3f1b685 nano.c:do_int_speller - Change all child error checks to use one goto (gasp) called close_pipes_and_exit, so we don't leak FDs by Chris Allegretta · 22 years ago
  44. 6cd143d - Add in Pico's -p flag, (-p, --preserve). To preserve the XON and XOFF keys (^Q and ^S). Add warning if we invoke -p and add checks for using --preserve (to skip warning) and --pico (to force showing it). New flag PRESERVE, function do_preserve_msg(), changes to main(), signal_init() by Chris Allegretta · 22 years ago
  45. 37d594c More bits left over from getting rid of pico mode, no more CLEAR_BACKUPSTRING, woo! Also reodered flags to remove gaps by Chris Allegretta · 22 years ago
  46. 15c28f8 Completely removed PICO_MODE, as with the search/replace history patch we should have the extended functionality we can without being incompatible with pico by Chris Allegretta · 22 years ago
  47. 5beed50 Ken's search history patch, minus the .nano_history stuff by Chris Allegretta · 22 years ago
  48. 95e0cf5 fix silly typo (#ifdef -> #ifndef) keeping nano -w from working by David Lawrence Ramsey · 22 years ago
  49. 9b13ff3 miscellaneous bug fixes, part 2 by David Lawrence Ramsey · 22 years ago
  50. 334a940 nano.c:do_int_speller(), do_alt_speller() - Programs now return char *, also fix waitpid invocation and checking of WIFEXITED WEXITSTATUS calls by Chris Allegretta · 22 years ago
  51. bfd2f56 Okay, I guess an edit_update is needed by Chris Allegretta · 22 years ago
  52. 35908f8 Fix screen not updating at exit of spell by Chris Allegretta · 22 years ago
  53. 1d8fa1f Make speller update the screen less excessively, and switch case sensitive search so we can fix individual capitalization cases of misspelled words by Chris Allegretta · 22 years ago
  54. 2a7a9a2 Be more verbose about what we're doing with new spell code by Chris Allegretta · 22 years ago
  55. 848f5be Change waits to waitpids to lessen the chance of a hang, and fix status check by Chris Allegretta · 22 years ago
  56. 5ad92ac - nano.c:do_int_speller() - Make internal spell program use sort -f and uniq to create a less redundant word list. [The only reason this is going in during feature freeze is because the int speller is useless as is and should either be improved or removed. I chose improved] by Chris Allegretta · 22 years ago
  57. 0084eaa documentation updates by David Lawrence Ramsey · 22 years ago
  58. dc60b72 forward-ported --disable-wrapping-as-root from nano 1.0.x by David Lawrence Ramsey · 22 years ago
  59. 2a15c58 Add DLR's --disable-nls to version info by Chris Allegretta · 22 years ago
  60. 2ab03f6 miscellaneous bug fixes by David Lawrence Ramsey · 22 years ago
  61. e42df73 - Disable VSTOP keystroke. Stops people accidentally locking up, nano (suggested by David Benbennick) by Chris Allegretta · 22 years ago
  62. 1dd0bc9 Remove malloc.h completely and add color synatx highlighting toggle by Chris Allegretta · 22 years ago
  63. 7c4222c make the spacing fix use isspace(); it works the same way and takes up by David Lawrence Ramsey · 22 years ago
  64. 4300092 Newer version of DLR's patch based on DB's tab thing by Chris Allegretta · 22 years ago
  65. 81dea02 Add DLR's fixes to the wrapping behavior by Chris Allegretta · 22 years ago
  66. 67ca2aa nano.c:do_wrap() - Restore the wrapping behavior to the previous wrapping point behavior (pre 1.1.10) (David Benbennick) by Chris Allegretta · 22 years ago
  67. e21adfa David Benbennick's minor fixes, plus one of mine by David Lawrence Ramsey · 22 years ago
  68. ad40fdb DLR: prototype overhaul, etc. by David Lawrence Ramsey · 22 years ago
  69. 0341b58 DLR: minor bits by David Lawrence Ramsey · 22 years ago
  70. d865da1 DLR's latest and greatest by Chris Allegretta · 22 years ago
  71. dffa207 Everything from DB's patch that makes any sense to me by Chris Allegretta · 22 years ago
  72. 1c5c338 Fix to parsing getopt args for -I/--ignorercfiles (DLR) by Chris Allegretta · 22 years ago
  73. cf287c8 More DLR updates by Chris Allegretta · 22 years ago
  74. 6df90f5 DLR and DB fixes mega-merge by Chris Allegretta · 22 years ago
  75. 5db0cdc Carl Drinkwater's backup patch, plus miscellaneous fixes by David by David Lawrence Ramsey · 22 years ago
  76. c596755 Carl Drinkwater's titlebar spacing fixes, David Benbennick's help browser by David Lawrence Ramsey · 22 years ago
  77. f21cd10 DLR: latest patch by David Lawrence Ramsey · 22 years ago
  78. 6232d66 DB's latest patch, minus one totsize--. Also fixed a < in help_init that should be <= by Chris Allegretta · 22 years ago
  79. 4dc03d5 DLR's latest patch by Chris Allegretta · 22 years ago
  80. 7c27be4 added an update_color, updated edit_add, i18ned a string and changed some getopt handlers in main to mallocstrcpy by Chris Allegretta · 22 years ago
  81. 09900ff Global flag -Y, --syntax to specify the type on the command line, if there's no good filename regex to use. Global variable syntaxstr. Made some errors in the rc file less fatal by Chris Allegretta · 22 years ago
  82. dab017e - More cleanups with DISABLE flags, better free_shortcutage and free_toggle, and get rid of unnecessary variable decls with NANO_SMALL in shortcut_init() by David Benbennick by Chris Allegretta · 23 years ago
  83. 0547eb3 - General: - Change from read() and write() to file streams by Jay Carlson. Allows OS to implement read and write ahead rather than making us do it. Hopefully merged properly by Chris Allegretta · 23 years ago
  84. f2387fb - Change to openfilestruct for multibuffer mode by DLR. New functions nano.c:make_new_opennode(), free_openfilestruct(), delete_opennode(), unlink_opennode(), splice_opennode(), new struct openfilestruct in nano.h by Chris Allegretta · 23 years ago
  85. 70feb4f Back that out, as it braks Linux :( by Chris Allegretta · 23 years ago
  86. 108ff58 - FreeBSD compat. Remove KEY_DC from the delete shortcut in global.c:shortcut_init(), add case for 330 under nano.c:main() by Chris Allegretta · 23 years ago
  87. 7162e3d DB's latest patch by Chris Allegretta · 23 years ago
  88. 77777d4 Add David Benbennick's changes to open_pipe() and move it to nano.c, and add his nperror function by Chris Allegretta · 23 years ago
  89. 9b4055c Bah, don't fix what isn't broken by Chris Allegretta · 23 years ago
  90. 6ca01b1 - nano.c: - Move the termios things in main() up to signal_init(), where they should probably be anyway by Chris Allegretta · 23 years ago
  91. 8e207bf - nano.c: - Move the termios things in main() up to signal_init(), where they should probably be anyway by Chris Allegretta · 23 years ago
  92. f6cba64 David's fixes for read_file and the assert stuff for renumber by Chris Allegretta · 23 years ago
  93. f21f3fc - nano.c:do_int_speller() - Fix zombie processes and spelling buffer issues (Rocco Corsi) by Chris Allegretta · 23 years ago
  94. cf1d812 - nano.c:do_justify() - More fixes for indented justify (David Benbennick) by Chris Allegretta · 23 years ago
  95. 52c5a6e External command code and fix for BUG #70 by Chris Allegretta · 23 years ago
  96. d1ec7b0 Allow flags with args to be translatable by Chris Allegretta · 23 years ago
  97. b479c89 - nano.c:help_init() - Various fixes and string changes by Chris Allegretta · 23 years ago
  98. 1f8394d Add newlines to gotodir help text by Chris Allegretta · 23 years ago
  99. 3fc5d57 - nano.c:usage() - Rewritten to encompass systems with and without GETOPT_LONG. New function print1opt does most of the dirty work, stops duplication of effort and eases translator's jobs. Also breaks all the current translations ;-) by Chris Allegretta · 23 years ago
  100. 97e6fe6 - nano.c:usage() - Add -N to short format (no GETOPT_LONG) strings (noticed by Jordi) by Chris Allegretta · 23 years ago