summaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
authorLuke Lee <luke@gauss>2024-08-23 14:19:41 +0800
committerLuke Lee <luke@gauss>2024-08-23 14:26:08 +0800
commit58c2f484100fecd89248c476e3baf222cda5c7c7 (patch)
tree0d8251cb353fed7aabcb5a789196f69c9d4faae7 /README.org
parent1d1d8fe291d785512eaa746dc2e5cd6dac96585c (diff)
Cursor-undo package compatibility, enhancements and bug fixes.externals/brief
* brief.el: Make various cursor movement commands to respect numeric command prefix, and better column computation for tabs. (brief-current-row-visual, brief-kill-line, brief-undo): cursor-undo compatibility. (brief-forward-column, brief-move-to-column-visual, brief-forward-word, brief-shift-tab): better and more accurate computation of columns. (brief-repeat-search, brief-repeat-search-forward, brief-repeat-search-backward, brief-scroll-up-one-line, brief-scroll-down-one-line): respect numeric command prefix. (brief-delete-entire-line): minor bug fix. * README.org: fix some wordings and paragraph structure.
Diffstat (limited to 'README.org')
-rw-r--r--README.org12
1 files changed, 7 insertions, 5 deletions
diff --git a/README.org b/README.org
index 056204b..98032b6 100644
--- a/README.org
+++ b/README.org
@@ -1,4 +1,4 @@
-Brief Mode / Brief Emulator / Brief Editor -*- mode: org; -*-
+# Brief Mode / Brief Emulator / Brief Editor -*- mode: org; -*-
#+STARTUP: showall
#+STARTUP: hidestars
@@ -106,10 +106,10 @@ this Brief Mode.
|---------------------------------------------+---------------------|
| 'G'oto line: | =<Alt>-G= |
|---------------------------------------------+---------------------|
- | 'L'ine oriented text selecting: | =<Alt>-L= |
+ | 'L'ine oriented text selection: | =<Alt>-L= |
| followed by cursor movements | |
|---------------------------------------------+---------------------|
- | 'C'olumn oriented text selecting: | =<Alt>-C= |
+ | 'C'olumn oriented text selection: | =<Alt>-C= |
| followed by cursor movements | |
|---------------------------------------------+---------------------|
| Start line 'M'arking: | =<Alt>-M= |
@@ -353,7 +353,8 @@ this Brief Mode.
|---------------------------------------------------+------------------------|
-* There are some less favored default Emacs settings which makes the editing
+* Less favored default Emacs settings:
+ There are some less favored default Emacs settings which makes the editing
experience in Emacs quite unlike others, especially for programmers. For
example, text wrapping is by default enabled so a program line could easily
wrapped to next line if window size changed; text scrolling is jumppy in both
@@ -382,7 +383,8 @@ this Brief Mode.
Or you can refer to the source code "brief.el" for function `brief-easy-start'.
-* For more details like Cygwin 2.x users note, please check the comments in the
+* Cygwin:
+ For more details like Cygwin 2.x users note, please check the comments in the
source code "brief.el".
Luke Lee