1- *nvim-tinygit.txt* For Neovim Last change: 2025 August 18
1+ *nvim-tinygit.txt* For Neovim Last change: 2025 October 13
22
33==============================================================================
44Table of Contents *nvim-tinygit-table-of-contents*
@@ -24,15 +24,15 @@ FEATURE OVERVIEW *nvim-tinygit-nvim-tinygit-feature-overview*
2424
2525Interactive stagingSmart commitFile history- **Interactive staging** of hunks (parts of a file). Displays hunk diffs with
2626 syntax highlighting, and allows resetting or navigating to the hunk.
27- - **Smart-commit**Open a popup to enter a commit message with syntax highlighting,
27+ - **Smart-commit**: Open a popup to enter a commit message with syntax highlighting,
2828 commit preview, and commit title length indicators. If there are no staged
2929 changes, stages all changes before doing so (`git add -A`). Optionally trigger
3030 a `git push` afterward.
3131- Convenient commands for **amending, stashing, fixup, or undoing commits**.
3232- Search **issues & PRs**. Open the selected issue or PR in the browser.
3333- Open the **GitHub URL** of the current file, repo, or selected lines. Also
3434 supports opening GitHub’s blame view.
35- - **Explore file history**Search the git history of a file for a string ("git
35+ - **Explore file history**: Search the git history of a file for a string ("git
3636 pickaxe"), or examine the history of a function or line range. Displays the
3737 results in a diff view with syntax highlighting, correctly following file
3838 renamings.
@@ -72,7 +72,7 @@ snacks.picker <http://github.com/folke/snacks.nvim> mini.pick
7272<https://github.com/ibhagwan/fzf-lua > - For interactive staging: telescope.nvim
7373<https://github.com/nvim-telescope/telescope.nvim > (PRs adding support for
7474other pickers are welcome.) - For GitHub-related commands: `curl` -
75- _Recommended_Treesitter parser for syntax highlighting `TSInstall gitcommit`.
75+ _Recommended_: Treesitter parser for syntax highlighting `TSInstall gitcommit`.
7676
7777>lua
7878 -- lazy.nvim
@@ -324,8 +324,8 @@ GITHUB INTERACTION ~
324324link is opened in the browser and copied to the system clipboard. In normal
325325mode, uses the current file, in visual mode, uses the selected lines. (Note
326326that visual mode detection requires you to use the lua function below instead
327- of the `:Tinygit` ex-command.) - `" file" ` link to the file - `" blame" ` link to
328- the blame view of the file - `" repo" ` link to the repo root
327+ of the `:Tinygit` ex-command.) - `" file" ` : link to the file - `" blame" ` : link
328+ to the blame view of the file - `" repo" ` : link to the repo root
329329
330330>lua
331331 -- "file"|"repo"|"blame" (default: "file")
@@ -363,17 +363,17 @@ automatically un-shallow the repo if needed.
363363<
364364
365365The type of history search depends on the mode `.fileHistory` is called from: -
366- **Normal mode**search file history for a string (`git log -G`) Correctly
366+ **Normal mode**: search file history for a string (`git log -G`) Correctly
367367follows file renamings, and displays past filenames in the commit selection.
368368The search input is case-insensitive and supports regex. Leave the input field
369369empty to display _all_ commits that changed the current file. - **Visual
370- mode**function history (`git log -L`). The selected text is assumed to be the
370+ mode**: function history (`git log -L`). The selected text is assumed to be the
371371name of the function whose history you want to explore. Note that `git` uses
372372heuristics to determine the enclosing function of a change
373373<https://news.ycombinator.com/item?id=38153309 >, so this is not 100% perfect
374374and has varying reliability across languages. Caveat: for function history, git
375375does not support to follow renamings of the file or function name. - **Visual
376- line mode**line range history (`git log -L`). Uses the selected lines as the
376+ line mode**: line range history (`git log -L`). Uses the selected lines as the
377377line range. Caveat: for line history, git does not support to follow file
378378renamings.
379379
0 commit comments