From a5c73fd9f7da9835e9c3ad02648d7e1515e376c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Joly?= Date: Sun, 21 Aug 2022 23:57:50 +0100 Subject: [PATCH] fix: properly name the help file so that nvim finds it --- Makefile | 8 ++++---- {help => doc}/bepo-nvim.txt | 38 ++++++++++++++++++------------------- 2 files changed, 23 insertions(+), 23 deletions(-) rename {help => doc}/bepo-nvim.txt (100%) diff --git a/Makefile b/Makefile index b0abeaf..8c1bb89 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ fnl_files = $(wildcard fnl/*.fnl) -help_file = help/bepo-nvim.txt +help_file = doc/bepo-nvim.txt help_file_mapping = bepo-nvim-mapping out_files = $(fnl_files:fnl/%.fnl=lua/%.lua) $(help_file) $(help_file_mapping) @@ -19,7 +19,7 @@ clean: doc: $(help_file) -$(help_file): $(help_file_mapping) help/ +$(help_file): $(help_file_mapping) doc/ rm $(help_file) cat $(help_file_mapping) >>$(help_file) rm $(help_file_mapping) @@ -27,7 +27,7 @@ $(help_file): $(help_file_mapping) help/ $(help_file_mapping): gen_doc.fnl $(fnl_files) fennel --raw-errors --no-compiler-sandbox --metadata --globals '*' gen_doc.fnl > $(help_file_mapping) -help/: - mkdir -p help +doc/: + mkdir -p doc .PHONY: clean doc $(help_file_mapping) diff --git a/help/bepo-nvim.txt b/doc/bepo-nvim.txt similarity index 100% rename from help/bepo-nvim.txt rename to doc/bepo-nvim.txt index 14c54a9..80df390 100644 --- a/help/bepo-nvim.txt +++ b/doc/bepo-nvim.txt @@ -43,25 +43,6 @@ only the “window” and “movement” groups of mapping, use this instead of The following subsections go into details of exactly what mappings are in each group. “Modes” have the same meaning as in the |map-table|. --------------------------------------------------------------------------------- -require("bepo").window() *bepo.nvim-window* -[w] est libre pour faire , grâce à easy_access - - Modes Bepo Qwerty - n w - n W - n wc h - n wt j - n ws k - n wr l - n wC H - n wT J - n wS K - n wR L - n wh s - n wé t - n wÉ T - -------------------------------------------------------------------------------- require("bepo").movement() *bepo.nvim-movement* on préserve {hjkl} pour les directions @@ -118,5 +99,24 @@ le couple [gb]/[gé] agit sur les tabs n gÉ :execute "silent! tablast" n gT +-------------------------------------------------------------------------------- +require("bepo").window() *bepo.nvim-window* +[w] est libre pour faire , grâce à easy_access + + Modes Bepo Qwerty + n w + n W + n wc h + n wt j + n ws k + n wr l + n wC H + n wT J + n wS K + n wR L + n wh s + n wé t + n wÉ T + vim:tw=78:ts=8:ft=help:norl: