NEWS 7.5 KB

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