NEWS 7.6 KB

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