From 9b4e8de8c2820e64495cad636e9dddd4a40db116 Mon Sep 17 00:00:00 2001 From: chrisgrieser Date: Wed, 17 May 2023 11:37:06 +0000 Subject: [PATCH] chore: Auto generate docs --- doc/genghis.txt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/doc/genghis.txt b/doc/genghis.txt index 22b353b..8ecd263 100644 --- a/doc/genghis.txt +++ b/doc/genghis.txt @@ -1,4 +1,4 @@ -*genghis.txt* For NVIM v0.8.0 Last change: 2023 April 06 +*genghis.txt* For NVIM v0.8.0 Last change: 2023 May 17 ============================================================================== Table of Contents *genghis-table-of-contents* @@ -16,7 +16,6 @@ Table of Contents *genghis-table-of-contents* Conveniencefile operations for neovim, written in lua. - - |genghis-how-is-this-different-from-`vim.eunuch`?| - |genghis-installation-and-setup| - |genghis-available-commands| @@ -30,7 +29,6 @@ Conveniencefile operations for neovim, written in lua. HOW IS THIS DIFFERENT FROM VIM.EUNUCH?*genghis-nvim-genghis--how-is-this-different-from-vim.eunuch?* - - Various improvements like automatically keeping the extensions when no extension is given, or moving files to the trash instead of removing them. - Uses only vim-commands or lua os-modules, so it has no dependencies and works cross-platform. - Makes use of up-to-date nvim features like `vim.ui.input` or `vim.notify`. This means you can get nicer input fields with normal mode support via plugins like dressing.nvim , and confirmation notices with plugins like nvim-notify , if they are installed and setup. @@ -71,7 +69,6 @@ AVAILABLE COMMANDS *genghis-nvim-genghis--available-commands* FILE OPERATION COMMAND ~ - - `.createNewFile` or `:New`Create a new file. - `.duplicateFile` or `:Duplicate`Duplicate the current file. - `.moveSelectionToNewFile` or `:NewFromSelection`Prompts for a new file name and moves the current selection to that new file. (Note that this is a Visual Line Mode command; the selection is moved linewise.) @@ -89,7 +86,6 @@ only command that can move to a parent directory. - All commands support FILE UTILITY COMMANDS ~ - - `.trashFile{trashLocation = "/your/path/"}` or `:Trash`Move the current file to the trash location. Defaults to the operating-system-specific trash directory. Any existing file in the trash location with the same name is overwritten, making that file irretrievable. If bufdelete.nvim is available, `require'bufdelete.nvim'.bufwipeout` would be used to keep window layout intact instead of `vim.cmd.bwipeout`. - `.copyFilename` or `:CopyFilename`Copy the file name. When `clipboard="unnamed[plus]"` has been set, copies to the `+` register, otherwise to `"`. - `.copyFilepath` or `:CopyFilepath`Copy the absolute file path. When `clipboard="unnamed[plus]"` has been set, copies to the `+` register, otherwise to `"`.