NEWS 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. ========== Version 1.11 <TBH> ==========
  2. New:
  3. - added a way to substitute current buffer filename, column
  4. number, and line number in shell command (esc x)
  5. Enhancements:
  6. - #102, dynamic-expand is working as expected now
  7. - #40, OpenBSD support
  8. Bugs:
  9. - fixed a bug jump to quote bug introduced in 1.10
  10. - fixed clipboard gibberish on NetBSD
  11. - fixed comment or string highlight from miscoloring the entire
  12. page after a buffer change
  13. - finally fixed version and help stuff
  14. - many memory bugs on GNU/Linux systemsx
  15. ========== Version 1.10 <2024-12-05> ==========
  16. New:
  17. - better syntax highlighting (WIP)
  18. - #97, M-. dynamic-expand
  19. Enhancements:
  20. - #92, made the buffer switching more sane
  21. - #98, copy default value in msgline (M-y in msgline)
  22. - slightly more efficient rendering
  23. - #94 (kinda), you can search for `\t` now
  24. Bugs:
  25. - #98, fixed bug with eol and bol
  26. - #99, multiline comments not encapsulating entire region
  27. - comment multi-line point annoyance
  28. - #101, fixed concatenating delete-words on NetBSD
  29. - many minor bugs
  30. ========== Version 1.9 <2024-10-26> ==========
  31. New Features:
  32. - #83, undoing/yanking from consecutive fwd-word-delete and
  33. back-word-delete. See man page for explanation.
  34. - #88, use previous value as default for gotoline, gotocolumn,
  35. zap-/jump-to-char, and delete-between
  36. - #91, added kill-ring
  37. - New switch buffer command option
  38. - this allows you to specific a custom command to run when
  39. switching buffers. For example, if you want to be able to
  40. perform fuzzy searching to select your buffer you can put
  41. fzf(1) or pick(1) as the command. More information in the
  42. page in the commands section on switch buffer command flag.
  43. - "C-x p" for previous-buffer, similar to next-buffer.
  44. - this removes the legacy "C-x l" command for last-buffer
  45. - Comment out multilines with a single line string
  46. Enhancements:
  47. - #89, fixed "bug" with keyboard macros.
  48. - you can know use gotoline/column, zap-/jump-to-char,
  49. delete-between, jumptorow, jumptoword, isearch with kbd
  50. macros
  51. - #8, tab completion on shell-/open-command
  52. - improved tab completion across the board:
  53. - buffer tabbing now loops back to the start
  54. - file tabbing now puts in the / for the directory
  55. - use enter or type another char to enable tab completion inside
  56. the directory
  57. - update line number when isearching
  58. - update other windows' modelines if buffer name was updated
  59. Bugs:
  60. - #87, crash when terminal is resized and ait is suspended
  61. - #65, fixed first line disappears again...
  62. - #90, fixed universal argument not clearing
  63. - more undo fixes
  64. - reframe when using query-relace ! takes you off page
  65. - fixed bugs with open-command messing up with colons
  66. - fixed bug with isearch that caused duplciate query chars to not
  67. get highlighted
  68. - fixed long time bug where if the newlines between matching
  69. brackets is greater than the difference between the previous
  70. point's row and the total window row
  71. ========== Version 1.8 <2024-01-02> ==========
  72. New Features:
  73. - #74, last char of a wrapped line is highlighted yellow
  74. - added poptomark after using jumptochar, negated jumptochar,
  75. jumptorow, and jumpword
  76. - before the point is moved it sets the buffer's pmark
  77. - most commands that jump you to new points now set the pmark
  78. - made previous mark (pmark) an array so you can jump to previous
  79. marks
  80. - replaced removewhitespacebetween with remove-between
  81. - Works like removewhitespace when you're on whitespace or on the
  82. edge of a word.
  83. - will delete the word that you're on if you're in the middle of it
  84. - C-u M-\ will ask for a bracket, this will delete the contents
  85. inside the bracket. It will jump to it first. Don't use this on
  86. single, double, or backquote unless you're inside them.
  87. - added a gotocolumn command
  88. - added comment command
  89. - added comment at end of line command
  90. - `-b backup_dir` option to set the backup dir.
  91. - this removes the original BACKUPDIR variable in the header.h
  92. Enhancements:
  93. - #77, #80 Fully support combined unicode/UTF-8 characters.
  94. - #76, will now display the path until there is a difference
  95. if two buffers have the same name. This will poop up and
  96. give up at 20 paths which I hope never happens to anyone.
  97. - Better syntax highlighting
  98. - can use more than 2 chars for comment indicators (such as <!--)
  99. - check LANG environment variable to determine if to show the unicode
  100. for the tab character
  101. Bugs:
  102. - #79, fixed bug with transpose-word messing up the line number
  103. - fixed poptomark sending you to point 0 if there are no marks
  104. - fixed numeric argument getting lost when the unicode buffer isn't
  105. empty
  106. - #82, fixed issues with horizontal split
  107. - fixed bug with insert-file causing revert-buffer to run
  108. - fixed bug where tabbing on a line wrap crashes the editor
  109. - fixed another bug with horizontal split not reframing when needed
  110. - fixed long-time bug where you can't open backup files using find-file
  111. - fixed % not showing in the msgline when searching or doing anything
  112. - fixed cutoff bug in minibuffer
  113. - fixed undo for buffer revert and C-o
  114. - fixed crash when msgline is longer than there are columns
  115. ========== Version 1.7 <2024-02-29> ==========
  116. New Features:
  117. - #68 Allow the inputting of control characters (C-q)
  118. - Added `esc j jumpline` command
  119. - quickly jump to a line on the current page (similar to avy)
  120. - Added `esc k jumpword` command
  121. - quickly jump to a "word" starting with the input char
  122. - #72 Added support to change the tabbing size and space-based tab
  123. size
  124. Enhancements:
  125. - #75 Fixed not being able to tab-complete files with spaces in the
  126. names.
  127. - this also allows you open files with spaces in the names now
  128. - Use PREFIX in makefile
  129. - Prevent render of things that don't need rendered
  130. - This helps on slower terminal emulators or slow SSH connections
  131. - new window max column property
  132. - only updates the information in the modeline, not the entire
  133. thing
  134. - Use a tempfile for creating backup file
  135. - this makes ait a little more portable by allowing the creation
  136. of backup files on systems that limit ait in open a single file
  137. at a time. This was happening on my very old Raspberry Pi.
  138. - When jumping from quotes, if there is an escaped quote inside it
  139. will now jump over it.
  140. Bugs:
  141. - #69 Fix clipboard pasting bug
  142. - #51 Fix inefficiency with the block comment syntax detector
  143. - this is actually still inefficient but the new rendering stuff
  144. prevents it from being visible
  145. - "not bound" error when performing keyboard macro
  146. - C-m and other crashes on blank buffers
  147. - Added note about backups not saving due to '~'
  148. - #63 duplicate modelines on NetBSD
  149. - fixed by comparing the leftover lines/columns and adjusting the
  150. buffers so
  151. - Fixed pasting not reframing sometimes
  152. - Fixed persistent column breaking when on non-left aligned windows
  153. - Fixed pasting reframing too early (causing the screen to jump
  154. - Fixed being able to use numeric arguments on some keybinds
  155. - C-z, C-s, and many others
  156. - Fixed backup files not working on armv6 RPI
  157. ========== Version 1.6 <2023-12-15> ==========
  158. Features:
  159. - #59 Action-based undo/redo
  160. - 8addff324d (l)ast command for query-replace
  161. Enhancements:
  162. - #67 opening two or more files with line number args messes things up
  163. - #66 jump to char doesn't update persistent column if it goes off line
  164. - #65 Sometimes characters on the first row disappear
  165. - #64 Point jumps to end of line if line is almost as long as there are cols and there is a tab char
  166. - #62 numeric argument doesn't work with insert
  167. - #61 can't open files with colons in them with open-command
  168. - #58 Reframing Issues
  169. - #57 Carrier Returns break everything
  170. - #53 paste/yank in msgline
  171. Bugs:
  172. - #59 fixed undo/redo issues
  173. - #54 removed mouse support
  174. - c1206d7fcf and 8fb34dad08 increased filename and buffer name size limits
  175. - many bug fixes related to line and row numbering (5ea8e6fd73, e7af131c06, etc.)
  176. - fixed many other smaller bugs
  177. * Version <1.6
  178. No news for this, so sad.