From 7a88145041a50607c739dad02b4f3e0242787ccd Mon Sep 17 00:00:00 2001 From: agoodshort Date: Thu, 28 Dec 2023 18:21:33 +0000 Subject: [PATCH 1/2] docs: added screen recording Update README.md --- README.md | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 67f361f..3110ba3 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ A customizable Telescope extension to list the git submodules of your current project and interact with them through the git TUI of your choice. + + ## Features - List the git submodules of the currently opened project @@ -33,17 +35,17 @@ return { The extension comes with the following defaults: ```lua - require("telescope").setup({ - extensions = { - git_submodules = { - git_cmd = "lazygit", - terminal_id = 9, - }, - }, - }) +require("telescope").setup({ + extensions = { + git_submodules = { + git_cmd = "lazygit", + terminal_id = 9, + }, + }, +}) ``` -### Extension Spec +### Extension Specs | Property | Type | Default Value | Description | |-------------|---------|---------------|----------------------------------| From 84a1aebb2f3c085339eb0c22111c63b707b10e2b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Dec 2023 18:38:30 +0000 Subject: [PATCH 2/2] chore(main): release 1.0.0 --- CHANGELOG.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..d9b6f04 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,17 @@ +# Changelog + +## 1.0.0 (2023-12-28) + + +### ⚠ BREAKING CHANGES + +* **config:** Property `terminal_count` is renamed to `terminal_id` for clarity + +### Features + +* configure `git_cmd` and `terminal_count` ([8218a14](https://github.com/agoodshort/telescope-git-submodules.nvim/commit/8218a14ae35f9ad627b41fe7dcbd8695e9d29550)) + + +### Code Refactoring + +* **config:** renamed property ([112888d](https://github.com/agoodshort/telescope-git-submodules.nvim/commit/112888da08c60096dd5add342b589761ad9f3810))