NEWS 7.9 KB

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