1. 8e94234 rename do_word_count() do_wordlinechar_count(), and simplify its final by David Lawrence Ramsey · 19 years ago
  2. 7293685 expand do_word_count() to also count the number of lines and characters by David Lawrence Ramsey · 19 years ago
  3. 7ea09e5 move mark setting, deleting, backspacing, tabbing, and entering of by David Lawrence Ramsey · 19 years ago
  4. 691698a move advanced text operations (command execution in a buffer, wrapping, by David Lawrence Ramsey · 19 years ago
  5. 2786530 remove more redundant screen updates in edit_scroll(), and add a few by David Lawrence Ramsey · 19 years ago
  6. c009759 allow scrolling more than editwinrows lines via edit_scroll(), take 2 by David Lawrence Ramsey · 19 years ago
  7. 47bb888 revert broken edit_scroll() changes for now by David Lawrence Ramsey · 19 years ago
  8. 44ca4f8 allow scrolling more than editwinrows lines via edit_scroll() by David Lawrence Ramsey · 19 years ago
  9. 61f5673 display invalid multibyte sequences as Unicode FFFD, take 2; also clean by David Lawrence Ramsey · 19 years ago
  10. 3a9a329 in do_find_bracket(), add comments and minor cleanups by David Lawrence Ramsey · 19 years ago
  11. c4037f3 move do_(next|prev)_word(_void())? to move.c too by David Lawrence Ramsey · 19 years ago
  12. e99494f add miscellaneous color and openfilestruct cleanups, and move the by David Lawrence Ramsey · 19 years ago
  13. ca62f9f move the paragraph-searching functions to move.c, as they're movement by David Lawrence Ramsey · 19 years ago
  14. e4b0742 Update French manpages by Jean-Philippe Guérard. by Jordi Mallach · 19 years ago
  15. 239c3d4 in nanogetstr(), make sure that magichistory is properly updated when we by David Lawrence Ramsey · 19 years ago
  16. 96e6d56 in find_history() and get_history_completion(), make parameters const by David Lawrence Ramsey · 19 years ago
  17. e3bae98 in mbstrchr(), don't count matches between valid and invalid multibyte by David Lawrence Ramsey · 19 years ago
  18. 91d468d for consistency, revert handling of cases where a search string and a by David Lawrence Ramsey · 19 years ago
  19. 7dc531a miscellaneous minor fixes by David Lawrence Ramsey · 19 years ago
  20. 0e581b3 make sure that the current position in the history list is properly set by David Lawrence Ramsey · 19 years ago
  21. a0aa4df properly handle cases where a search string and a match to it are not by David Lawrence Ramsey · 19 years ago
  22. f7bcbeb don't display invalid multibyte sequences as Unicode 0xFFFD in by David Lawrence Ramsey · 19 years ago
  23. 50a33db per DB'S patch, in do_spell(), when displaying an error message from by David Lawrence Ramsey · 19 years ago
  24. 7eb30a8 change NANO_WIDE #define to ENABLE_UTF8, as the latter is clearer by David Lawrence Ramsey · 19 years ago
  25. c104ef1 simplify get_totals() (renamed get_totsize()) to only get the total by David Lawrence Ramsey · 19 years ago
  26. 5e146e8 add missing check_statusblank() calls by David Lawrence Ramsey · 19 years ago
  27. 157ce91 speed up character output, and fix edit_refresh() breakage by David Lawrence Ramsey · 19 years ago
  28. 4d46437 properly overhaul edit_scroll() to update the screen on its own this by David Lawrence Ramsey · 19 years ago
  29. 5b44f37 really fix color breakage by decoupling edit_update() and by David Lawrence Ramsey · 19 years ago
  30. 8f4762a cosmetic and #ifdef fixes by David Lawrence Ramsey · 19 years ago
  31. 8f1afee fix color breakage; also, in main(), when opening files with by David Lawrence Ramsey · 19 years ago
  32. e5806be clean up edit_redraw() a bit by David Lawrence Ramsey · 19 years ago
  33. cb8d845 still more miscellaneous color fixes by David Lawrence Ramsey · 19 years ago
  34. a74f2f8 split overly long changelog entry by David Lawrence Ramsey · 19 years ago
  35. 8f948fa handle unspecified foreground colors by David Lawrence Ramsey · 19 years ago
  36. 0532296 more miscellaneous minor fixes by David Lawrence Ramsey · 19 years ago
  37. b802a13 it turns out edit_redraw() is needed after all when doing by David Lawrence Ramsey · 19 years ago
  38. d2361f0 add minor fixes to the new color code, and merge parts of Brand by David Lawrence Ramsey · 19 years ago
  39. f00c961 make the movement code simpler by tweaking edit_scroll() to redraw all by David Lawrence Ramsey · 19 years ago
  40. db95802 add breakage fixes, type fixes, and as-needed color regex compilation by David Lawrence Ramsey · 19 years ago
  41. e5c7e92 still more breakage fixes by David Lawrence Ramsey · 19 years ago
  42. 222b201 miscellaneous minor fixes by David Lawrence Ramsey · 19 years ago
  43. 1126204 per Ken Tyler's suggestion, simplify do_gotoline_msg further; also, in by David Lawrence Ramsey · 19 years ago
  44. b386a90 use blank_line() instead of hblank/mvwhline(), and fix more breakage by David Lawrence Ramsey · 19 years ago
  45. 1d696c0 work around slang brokenness by David Lawrence Ramsey · 19 years ago
  46. a0ebc81 replace almost all mvwaddstr(hblank) calls with mvwhline(' ', COLS) by David Lawrence Ramsey · 19 years ago
  47. 5600184 yet more breakage fixes by David Lawrence Ramsey · 19 years ago
  48. 76c25f5 still more breakage fixes by David Lawrence Ramsey · 19 years ago
  49. dbcaa3b fix some breakage caused by the restructuring by David Lawrence Ramsey · 19 years ago
  50. 6ad59cd restructure things so that every file has its own openfilestruct, and so by David Lawrence Ramsey · 19 years ago
  51. 64661ac rename filebuffer to openfile. as it's shorter by David Lawrence Ramsey · 19 years ago
  52. 9d8396d miscellaneous minor fixes by David Lawrence Ramsey · 19 years ago
  53. 503f278 rename variable open_files filebuffer, for consistency by David Lawrence Ramsey · 19 years ago
  54. 9057329 reorder some functions for consistency by David Lawrence Ramsey · 19 years ago
  55. de03989 add more int -> ssize_t line number fixes, plus one formatting fix by David Lawrence Ramsey · 19 years ago
  56. 757f739 reword an error message for consistency by David Lawrence Ramsey · 19 years ago
  57. 1228699 fix renumber_all() as well as renumber() by David Lawrence Ramsey · 19 years ago
  58. d72bdf1 in renumber(), when renumbering, properly use a ssize_t instead of an int by David Lawrence Ramsey · 19 years ago
  59. 9c1fef0 in shortcut_init(), per Jordi's suggestion, simplify wording of by David Lawrence Ramsey · 19 years ago
  60. 9838a51 in display_string(), display invalid multibyte sequences as Unicode by David Lawrence Ramsey · 19 years ago
  61. ec01074 add missing dashes by David Lawrence Ramsey · 19 years ago
  62. 504ae90 in faq.html, update section 4.10 to mention that pasting from the X by David Lawrence Ramsey · 19 years ago
  63. da50e73 with the removal of the last snprintf(), we now only use vsnprintf(), so by David Lawrence Ramsey · 19 years ago
  64. e927ce5 more minor variable tweaks by David Lawrence Ramsey · 19 years ago
  65. 892396b in do_alt_speller(), if we can't invoke the spell checker, use sprintf() by David Lawrence Ramsey · 19 years ago
  66. 658f7e6 minor variable tweaks by David Lawrence Ramsey · 19 years ago
  67. 32263ed add Mike Frysinger's Bourne shell script regexes, with a few minor tweaks by David Lawrence Ramsey · 19 years ago
  68. 0c3d3c9 add missing colon by David Lawrence Ramsey · 19 years ago
  69. 612b416 clean up the search code a bit by David Lawrence Ramsey · 19 years ago
  70. e3df878 in do_replace(), blank out last_replace properly again just before by David Lawrence Ramsey · 19 years ago
  71. a549a82 more cosmetic fixes by David Lawrence Ramsey · 19 years ago
  72. 9c3249c minor cosmetic and constant cursor position display fixes by David Lawrence Ramsey · 19 years ago
  73. d509229 Back to CVS by David Lawrence Ramsey · 19 years ago
  74. 665b1fb GNU nano 1.3.8 by David Lawrence Ramsey · 19 years ago
  75. 5cbe08f remove unneeded clearok(TRUE) from total_redraw() by David Lawrence Ramsey · 19 years ago
  76. 73bf89f make do_yesno() refresh the edit window as well as the statusbar before by David Lawrence Ramsey · 19 years ago
  77. a73025d in do_replace_highlight(), call wnoutrefresh(edit) to make sure that the by David Lawrence Ramsey · 19 years ago
  78. 7bde053 in do_replace_highlight(), rename variable highlight_flag to highlight, by David Lawrence Ramsey · 19 years ago
  79. 44e0c03 in do_yesno(), het input from bottomwin instead of edit, so that the by David Lawrence Ramsey · 19 years ago
  80. 85c0b3c improve version()'s output by David Lawrence Ramsey · 19 years ago
  81. f816119 in find_paragraph(), reset placewewant as well as current_x to 0, in by David Lawrence Ramsey · 19 years ago
  82. 4e05b75 in do_cursorpos(), if constant is TRUE, only display the cursor position by David Lawrence Ramsey · 19 years ago
  83. b2072b0 cosmetic fixes by David Lawrence Ramsey · 19 years ago
  84. 9905b6a rework the credits handling to display Florian König's name properly by David Lawrence Ramsey · 19 years ago
  85. 2cf6d71 add various type changes to avoid problems on systems where int and by David Lawrence Ramsey · 19 years ago
  86. 6ad6b85 more miscellaneous minor fixes by David Lawrence Ramsey · 19 years ago
  87. 18d6a7a in do_justify(), save placewewant, and restore it if we unjustify, in by David Lawrence Ramsey · 19 years ago
  88. 5423680 in edit_redraw(), make do_refresh a bool instead of an int by David Lawrence Ramsey · 19 years ago
  89. b8351c1 per Mike Frysinger's suggestion, in the "nanorc" regexes, put "^" back by David Lawrence Ramsey · 19 years ago
  90. 27ae93d clarify and consolidate the descriptions of the "fill" and "tabsize" by David Lawrence Ramsey · 19 years ago
  91. 23555f2 add support for case insensitive expression matching when using color by David Lawrence Ramsey · 19 years ago
  92. a899ab1 simplify the file extension regex for groff by David Lawrence Ramsey · 19 years ago
  93. c5632a7 add Mike Frysinger's GCC builtins regex to the "c-file" regexes by David Lawrence Ramsey · 19 years ago
  94. 6ea410e add missing int -> bool conversion by David Lawrence Ramsey · 19 years ago
  95. d4471eb in do_toggle(), properly treat color syntax highlighting as enabled by by David Lawrence Ramsey · 19 years ago
  96. a8824a1 per Mike Frysinger's suggestion, change the word detection functions' by David Lawrence Ramsey · 19 years ago
  97. 059ba19 add Mike Frysinger's regexes for assembler files by David Lawrence Ramsey · 19 years ago
  98. bec2606 in nanorc.sample, banish " " whever possible in favor of "[[:space:]]" by David Lawrence Ramsey · 19 years ago
  99. 9d658ce add "cxx" and "hxx" to the list of extensions that the "c-file" regexes by David Lawrence Ramsey · 19 years ago
  100. 5e50e2f in disable_flow_control() and enable_flow_control(), only turn off flow by David Lawrence Ramsey · 19 years ago