From 8f30b42c2bc9cb6b3c718f017d5879939846f201 Mon Sep 17 00:00:00 2001 From: chrisgrieser Date: Sat, 14 Dec 2024 14:33:59 +0000 Subject: [PATCH] chore: auto-generate vimdocs --- doc/nvim-genghis.txt | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/doc/nvim-genghis.txt b/doc/nvim-genghis.txt index ee75d42..7be12c2 100644 --- a/doc/nvim-genghis.txt +++ b/doc/nvim-genghis.txt @@ -1,4 +1,4 @@ -*nvim-genghis.txt* For Neovim Last change: 2024 December 13 +*nvim-genghis.txt* For Neovim Last change: 2024 December 14 ============================================================================== Table of Contents *nvim-genghis-table-of-contents* @@ -34,7 +34,6 @@ TABLE OF CONTENTS *nvim-genghis-nvim-genghis--table-of-contents* - |nvim-genghis-available-commands| - |nvim-genghis-file-operations| - |nvim-genghis-copy-operations| - - |nvim-genghis-other-operations| - |nvim-genghis-why-that-name?| - |nvim-genghis-about-the-author| @@ -130,6 +129,8 @@ FILE OPERATIONS ~ old name if the new path ends with `/`. Works like the Unix `mv` command. - `.moveToFolderInCwd`Move the current file to an existing folder in the current working directory. +- `.chmodx`Makes current file executable. Equivalent to `chmod +x`. +- `.trashFile`Move the current file to the trash location. Defaults to `gio trash` on _Linux_, and `trash` on _macOS_ or _Windows_. The following applies to all commands above: 1. If no extension has been provided, uses the extension of the original file. 2. If the new file name @@ -154,15 +155,6 @@ COPY OPERATIONS ~ All commands use the system clipboard. -OTHER OPERATIONS ~ - -- `.chmodx`Makes current file executable. Equivalent to `chmod +x`. -- `.trashFile`Move the current file to the trash location. Defaults to `gio trash` on _Linux_, and `trash` on _macOS_ or _Windows_. - - If bufdelete.nvim is available, - `require("bufdelete.nvim").bufwipeout` is used to keep window layout intact - instead of `vim.cmd.bwipeout`. - - [!NOTE] The trash CLIs are usually not available by default, and must be installed.