; * etc/NEWS: Fix typos.
This commit is contained in:
parent
b236a2529d
commit
ae4685c5e2
1 changed files with 31 additions and 29 deletions
60
etc/NEWS
60
etc/NEWS
|
@ -179,7 +179,7 @@ the "*Completions*" buffer is hidden.
|
|||
---
|
||||
*** New user option 'crm-prompt' for 'completing-read-multiple'.
|
||||
This option configures the prompt format of 'completing-read-multiple'.
|
||||
By default the prompt indicates to the user that the completion command
|
||||
By default, the prompt indicates to the user that the completion command
|
||||
accepts a comma-separated list. The prompt format can include the
|
||||
separator description and the separator string, which are both stored as
|
||||
text properties of the 'crm-separator' regular expression.
|
||||
|
@ -297,7 +297,7 @@ first argument. This is a way for the callers to indicate, for example,
|
|||
the reason or the context why the project is asked for.
|
||||
|
||||
---
|
||||
*** New command 'project-find-matching-file'
|
||||
*** New command 'project-find-matching-file'.
|
||||
It can be used when switching between projects with similar file trees
|
||||
(such as Git worktrees of the same repository). It supports being
|
||||
invoked standalone or from the 'project-switch-commands' dispatch menu.
|
||||
|
@ -453,10 +453,10 @@ to the corresponding position in the old text and vice versa.
|
|||
This allows passing a string with wildcards, or a cons cell where the
|
||||
first element is a list and the rest is a list of files.
|
||||
|
||||
*** Bound unused letters in 'image-dired-thumbnail-mode-map'
|
||||
*** Bound unused letters in 'image-dired-thumbnail-mode-map'.
|
||||
For a more comfortable navigation experience (as in, no modifier keys),
|
||||
the keys "f", "b", "n", "p", "a" and "e" are now bound to the
|
||||
same functions as their C- counterparts.
|
||||
the keys 'f', 'b', 'n', 'p', 'a' and 'e' are now bound to the
|
||||
same functions as their 'C-' counterparts.
|
||||
|
||||
** Browse URL
|
||||
|
||||
|
@ -674,7 +674,7 @@ those commands search in input history only when the point is after the
|
|||
last prompt.
|
||||
|
||||
+++
|
||||
** Mail-util
|
||||
** Mail Utils
|
||||
|
||||
*** New user option 'mail-re-regexps'.
|
||||
This contains the list of regular expressions used to match "Re:" and
|
||||
|
@ -1162,7 +1162,7 @@ When the argument is non-nil, the function switches to a buffer visiting
|
|||
the directory into which the repository was cloned.
|
||||
|
||||
---
|
||||
*** C-x v u ('vc-revert') now works on directories listed in VC-Dir.
|
||||
*** 'C-x v u' ('vc-revert') now works on directories listed in VC Directory.
|
||||
Reverting a directory means reverting changes to all files inside it.
|
||||
|
||||
** Package
|
||||
|
@ -1171,7 +1171,8 @@ Reverting a directory means reverting changes to all files inside it.
|
|||
*** No longer warn if a package has no footer line.
|
||||
package.el no longer warns for packages without a "footer line", which
|
||||
is the line that usually appears at the very end of an Emacs Lisp file:
|
||||
;;; FILENAME ends here
|
||||
|
||||
;;; FILENAME ends here
|
||||
|
||||
---
|
||||
*** New optional argument to 'package-autoremove'.
|
||||
|
@ -1221,13 +1222,20 @@ runs its body, and removes the current buffer from
|
|||
|
||||
|
||||
* New Modes and Packages in Emacs 31.1
|
||||
|
||||
** New major modes based on the tree-sitter library
|
||||
|
||||
*** New major mode 'mhtml-ts-mode'.
|
||||
An optional major mode based on the tree-sitter library for editing html
|
||||
files. This mode handles indentation, fontification, and commenting for
|
||||
An optional major mode based on the tree-sitter library for editing HTML
|
||||
files. This mode handles indentation, fontification, and commenting for
|
||||
embedded JavaScript and CSS.
|
||||
|
||||
---
|
||||
*** New major mode 'go-work-ts-mode'.
|
||||
A major mode based on the tree-sitter library for editing "go.work"
|
||||
files. If tree-sitter is properly set-up by the user, it can be
|
||||
enabled for files named "go.work".
|
||||
|
||||
|
||||
* Incompatible Lisp Changes in Emacs 31.1
|
||||
|
||||
|
@ -1383,25 +1391,25 @@ language symbols where that translation is not trivial.
|
|||
+++
|
||||
++++
|
||||
*** New function 'treesit-merge-font-lock-feature-list'.
|
||||
This function the merge two tree-sitter font lock feature lists.
|
||||
Returns a new font lock feature list with no duplicates in the same level.
|
||||
It can be used to merge font lock feature lists in a multi-language major mode.
|
||||
This function merges two tree-sitter font-lock feature lists. Returns a
|
||||
new font-lock feature list with no duplicates in the same level. It can
|
||||
be used to merge font-lock feature lists in a multi-language major mode.
|
||||
|
||||
+++
|
||||
*** New function 'treesit-replace-font-lock-feature-settings'.
|
||||
Given two treesit-font-lock-settings replaces the feature in the second
|
||||
font-lock-settings with the same feature in the first
|
||||
font-lock-settings. In a multi-linguage major mode it is sometimes
|
||||
necessary to replace features from one of the major modes, with others
|
||||
that are better suited to the new multilingual context.
|
||||
Given two tree-sitter font-lock settings, it replaces the feature in the
|
||||
second font-lock settings with the same feature in the first font-lock
|
||||
settings. In a multi-language major mode it is sometimes necessary to
|
||||
replace features from one of the major modes, with others that are
|
||||
better suited to the new multilingual context.
|
||||
|
||||
+++
|
||||
*** New function 'treesit-modify-indent-rules'.
|
||||
Given two treesit ident rules, it replaces, adds, or prepends the new
|
||||
rules to the old ones, then returns a new treesit indent rules.
|
||||
In a multi-linguage major mode it is sometimes necessary to modify rules
|
||||
from one of the major modes, with others that are better suited to the
|
||||
new multilingual context.
|
||||
Given two tree-sitter indent rules, it replaces, adds, or prepends the
|
||||
new rules to the old ones, then returns the new tree-sitter indent
|
||||
rules. In a multi-language major mode it is sometimes necessary to
|
||||
modify rules from one of the major modes, with others that are better
|
||||
suited to the new multilingual context.
|
||||
|
||||
+++
|
||||
*** New command 'treesit-explore'.
|
||||
|
@ -1575,12 +1583,6 @@ means of the GDI+ library.
|
|||
In addition to ':file FILE' for playing a sound from a file, ':data
|
||||
DATA' can now be used to play a sound from memory.
|
||||
|
||||
---
|
||||
** New major mode 'go-work-ts-mode'.
|
||||
A major mode based on the tree-sitter library for editing "go.work"
|
||||
files. If tree-sitter is properly set-up by the user, it can be
|
||||
enabled for files named "go.work".
|
||||
|
||||
|
||||
----------------------------------------------------------------------
|
||||
This file is part of GNU Emacs.
|
||||
|
|
Loading…
Add table
Reference in a new issue