Misc doc fixes

This commit is contained in:
Clément Joly 2022-09-02 07:56:51 +02:00
parent 1385f1500e
commit aedb275b57
2 changed files with 16 additions and 15 deletions

View File

@ -4,7 +4,7 @@
Author: Clément Joly <https://cj.rs/contact>
Homepage: <https://cj.rs/bepo-nvim>
License: APACHE license
License: APACHE-2.0
Type |gO| to see the table of contents.
@ -71,6 +71,17 @@ on préserve {hjkl} pour les directions
nx k s
nx K S
--------------------------------------------------------------------------------
require("bepo").tabs() *bepo.nvim-tabs*
le couple [gb]/[gé] agit sur les tabs
Modes Bepo Qwerty
n gb gT
n gé gt
n gB :execute "silent! tabfirst"<CR>
n gÉ :execute "silent! tablast"<CR>
n gT <C-]>
--------------------------------------------------------------------------------
require("bepo").window() *bepo.nvim-window*
[w] est libre pour faire <C-w>, grâce à easy_access
@ -90,24 +101,13 @@ require("bepo").window() *bepo.nvim-windo
n wé <C-w>t
n wÉ <C-w>T
--------------------------------------------------------------------------------
require("bepo").tabs() *bepo.nvim-tabs*
le couple [gb]/[gé] agit sur les tabs
Modes Bepo Qwerty
n gb gT
n gé gt
n gB :execute "silent! tabfirst"<CR>
n gÉ :execute "silent! tablast"<CR>
n gT <C-]>
--------------------------------------------------------------------------------
require("bepo").easy_access() *bepo.nvim-easy_access*
Modes Bepo Qwerty
n « <
v « <gv
n » >
n » >
v » >gv
nx g, g;
nx g; g,

View File

@ -39,7 +39,8 @@
(fn print-mapping-struct [struct]
(match struct
{: bepo : modes : qwerty}
(print (.. (right-align modes 6) " " (left-align bepo 4) " " qwerty))
(let [qw (if (= ">" qwerty) "> " qwerty)]
(print (.. (right-align modes 6) " " (left-align bepo 4) " " qw)))
_ (error (.. "Received an invalid struct" (fennel.view struct)))))
(fn print-lua-import [name]
@ -58,7 +59,7 @@
Author: Clément Joly <https://cj.rs/contact>
Homepage: <https://cj.rs/bepo-nvim>
License: APACHE license
License: APACHE-2.0
Type |gO| to see the table of contents.