[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/nano-modeline 7331307df8 03/26: Upated documentation to
From: |
ELPA Syncer |
Subject: |
[elpa] externals/nano-modeline 7331307df8 03/26: Upated documentation to new implementation |
Date: |
Fri, 2 Jun 2023 03:59:06 -0400 (EDT) |
branch: externals/nano-modeline
commit 7331307df8b07cdd4a9fc15892e5d93e8b3d33ea
Author: Nicolas P. Rougier <Nicolas.Rougier@inria.fr>
Commit: Nicolas P. Rougier <Nicolas.Rougier@inria.fr>
Upated documentation to new implementation
---
README.md | 39 +++++++++++++++++----------------------
1 file changed, 17 insertions(+), 22 deletions(-)
diff --git a/README.md b/README.md
index 834abb28b7..015d6f4e8f 100644
--- a/README.md
+++ b/README.md
@@ -1,36 +1,31 @@
## N Λ N O Modeline
-Nano modeline is a minor mode for GNU/Emacs that modify the modeline as:
-
-`[ status | name (primary) secondary ]`
-
-It can be displayed at the bottom (mode-line) or at the top (header-line)
+Nano modeline is a an alterntive to the GNU/Emacs modeline. It can be
+displayed at the bottom (mode-line) or at the top (header-line)
depending on nano-modeline-position custom setting.
-There are two sets of faces (for active and inactive modelines) that
-can be customized (M-x: customize-group + nano-modeline)
-
-- `nano-modeline-active` / `nano-modeline-inactive`
-- `nano-modeline-active-name` / `nano-modeline-inactive-name`
-- `nano-modeline-active-primary` / `nano-modeline-inactive-primary`
-- `nano-modeline-active-secondary` / `nano-modeline-inactive-secondary`
-- `nano-modeline-active-status-RO` / `nano-modeline-inactive-status-RO`
-- `nano-modeline-active-status-RW` / `nano-modeline-inactive-status-RW`
-- `nano-modeline-active-status-**` / `nano-modeline-inactive-status-**`
-
### Installation
Install with `M-: (package-install 'nano-modeline)`
### Usage example:
-Activate with ` M-x: nano-modeline-mode`
-
-### Configure column and line numbers
+```emacs-lisp
+(add-hook 'prog-mode-hook #'nano-modeline-prog-mode)
+(add-hook 'text-mode-hook #'nano-modeline-text-mode)
+(add-hook 'org-mode-hook #'nano-modeline-org-mode)
+(add-hook 'pdf-view-mode-hook #'nano-modeline-pdf-mode)
+(add-hook 'mu4e-headers-mode-hook #'nano-modeline-mu4e-headers-mode)
+(add-hook 'mu4e-view-mode-hook #'nano-modeline-mu4e-message-mode)
+(add-hook 'elfeed-show-mode-hook #'nano-modeline-elfeed-entry-mode)
+(add-hook 'elfeed-search-mode-hook #'nano-modeline-elfeed-search-mode)
+(add-hook 'term-mode-hook #'nano-modeline-term-mode)
+(add-hook 'xwidget-webkit-mode-hook #'nano-modeline-xwidget-mode)
+(add-hook 'messages-buffer-mode-hook #'nano-modeline-message-mode)
+(add-hook 'org-capture-mode-hook #'nano-modeline-org-capture-mode)
+(add-hook 'org-agenda-mode-hook #'nano-modeline-org-agenda-mode)
+```
-Emacs comes with `column-number-mode` off by default.
-If you would like to see the column number, turn it on with `M-x:
column-number-mode`
-Similarily, if you do not want to see the line number, turn it off with `M-x:
line-number-mode`
### Screenshots (using [N Λ N O theme](https://github.com/rougier/nano-theme)):
- [elpa] externals/nano-modeline 7f8c45c5fb 02/26: Some modelines can be made default (text or prog), (continued)
- [elpa] externals/nano-modeline 7f8c45c5fb 02/26: Some modelines can be made default (text or prog), ELPA Syncer, 2023/06/02
- [elpa] externals/nano-modeline d18fa48999 08/26: Update documentation, ELPA Syncer, 2023/06/02
- [elpa] externals/nano-modeline 3e29afaea2 09/26: Better alignment with fringes and margins, ELPA Syncer, 2023/06/02
- [elpa] externals/nano-modeline 7663311747 04/26: Bugfix with deadline date, ELPA Syncer, 2023/06/02
- [elpa] externals/nano-modeline 26470be833 07/26: Nil face is ok, ELPA Syncer, 2023/06/02
- [elpa] externals/nano-modeline 7503853c0b 13/26: Added clickalt text/svg buttons, ELPA Syncer, 2023/06/02
- [elpa] externals/nano-modeline 961065fe66 16/26: Added possibility to have icon in buttons, ELPA Syncer, 2023/06/02
- [elpa] externals/nano-modeline a2bf4fd073 22/26: Several group of butons are now possible, ELPA Syncer, 2023/06/02
- [elpa] externals/nano-modeline bead6850a1 26/26: Add usage example to documentation, ELPA Syncer, 2023/06/02
- [elpa] externals/nano-modeline 0b47e73d04 18/26: Added possibility for dynamic buttons, ELPA Syncer, 2023/06/02
- [elpa] externals/nano-modeline 7331307df8 03/26: Upated documentation to new implementation,
ELPA Syncer <=
- [elpa] externals/nano-modeline 239000d7e1 10/26: Handle case when fringes are outside margins, ELPA Syncer, 2023/06/02
- [elpa] externals/nano-modeline 93c78fd956 12/26: Renamed faces to name/primary/secondary, ELPA Syncer, 2023/06/02
- [elpa] externals/nano-modeline 7f5879ead9 14/26: Better org-mode, ELPA Syncer, 2023/06/02
- [elpa] externals/nano-modeline 4e5be76d98 17/26: Message compose mode with buttons, ELPA Syncer, 2023/06/02
- [elpa] externals/nano-modeline e3a04505ff 05/26: Optional symbols, ELPA Syncer, 2023/06/02
- [elpa] externals/nano-modeline 8304ce072f 06/26: Simplification of faces, ELPA Syncer, 2023/06/02
- [elpa] externals/nano-modeline 67ad139060 15/26: Org capture mode with buttons, ELPA Syncer, 2023/06/02
- [elpa] externals/nano-modeline 1fc418a2f5 19/26: Added buttons to all mu4e modes, ELPA Syncer, 2023/06/02
- [elpa] externals/nano-modeline 3773403dbe 20/26: Added help message for buttons, ELPA Syncer, 2023/06/02
- [elpa] externals/nano-modeline cba074e55c 23/26: Tagged version 1.0, ELPA Syncer, 2023/06/02