Skip to content

Commit 7f28ed8

Browse files
committed
feat(keymap): added [ and ] pending operators
1 parent 783ebaa commit 7f28ed8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+1781
-13126
lines changed
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Ask a question
4-
url: https://github.com/ColinKennedy/nvim-best-practices-plugin-template/discussions
4+
url: https://github.com/ColinKennedy/cursor-text-objects.nvim/discussions
55
about: Use Github discussions instead

.github/ISSUE_TEMPLATE/bug_report.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@ body:
66
- type: markdown
77
attributes:
88
value: |
9-
**Before** reporting an issue, make sure to read the [documentation](https://github.com/ColinKennedy/nvim-best-practices-plugin-template)
10-
and search [existing issues](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/issues) (even the [closed issues](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/issues?q=is%3Aissue+is%3Aclosed))
9+
**Before** reporting an issue, make sure to read the [documentation](https://github.com/ColinKennedy/cursor-text-objects.nvim)
10+
and search [existing issues](https://github.com/ColinKennedy/cursor-text-objects.nvim/issues) (even the [closed issues](https://github.com/ColinKennedy/cursor-text-objects.nvim/issues?q=is%3Aissue+is%3Aclosed))
1111
12-
Usage questions such as ***"How do I...?"*** belong in [Discussions](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/discussions) and will be closed.
12+
Usage questions such as ***"How do I...?"*** belong in [Discussions](https://github.com/ColinKennedy/cursor-text-objects.nvim/discussions) and will be closed.
1313
- type: checkboxes
1414
attributes:
1515
label: Did you read the documentation and check existing issues?
1616
description: Make sure you checked and all of the below before submitting an issue
1717
options:
18-
- label: I have read all the [`:help plugin-template`](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/blob/main/doc/my-template-docs.txt) documentation
18+
- label: I have read all the [`:help cursor-text-objects`](https://github.com/ColinKennedy/cursor-text-objects.nvim/blob/main/doc/my-template-docs.txt) documentation
1919
required: true
2020
- label: I have updated the plugin to the latest version before submitting this issue
2121
required: true
22-
- label: I have searched the [existing issues](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/issues) and [closed issues](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/issues?q=is%3Aissue+is%3Aclosed) issues
22+
- label: I have searched the [existing issues](https://github.com/ColinKennedy/cursor-text-objects.nvim/issues) and [closed issues](https://github.com/ColinKennedy/cursor-text-objects.nvim/issues?q=is%3Aissue+is%3Aclosed) issues
2323
required: true
2424
- type: input
2525
attributes:
@@ -58,12 +58,12 @@ body:
5858
- type: textarea
5959
attributes:
6060
label: Health
61-
description: Attach the output of `:checkhealth plugin_template` here
61+
description: Attach the output of `:checkhealth cursor_text_objects` here
6262
render: log
6363
- type: textarea
6464
attributes:
6565
label: Log
66-
description: Please enable logging with `vim.g.plugin_template_configuration = {logging = {level = "debug", use_file = true}}` and attach the contents of `~/.local/share/nvim` here or call `:PluginTemplate copy-logs`
66+
description: Please enable logging with `vim.g.cursor_text_objects_configuration = {logging = {level = "debug", use_file = true}}` and attach the contents of `~/.local/share/nvim` here or call `:CursorTextObjects copy-logs`
6767
render: log
6868
- type: textarea
6969
attributes:
@@ -77,7 +77,7 @@ body:
7777
spec = {
7878
{
7979
-- Add anything you need here (configuration, other plugins, etc)
80-
"ColinKennedy/nvim-best-practices-plugin-template",
80+
"ColinKennedy/cursor-text-objects.nvim",
8181
},
8282
})
8383
render: lua

.github/workflows/documentation.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,10 @@ jobs:
1818
neovim: true
1919
version: stable
2020

21-
- name: Create API Documentation
22-
run: |
23-
nvim --version
24-
make api_documentation
25-
2621
- name: Create User Documentation
2722
uses: kdheepak/panvimdoc@main
2823
with:
29-
vimdoc: plugin-template
24+
vimdoc: cursor-text-objects
3025
version: "Neovim >= 0.8.0"
3126
demojify: true
3227
treesitter: true

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
- name: build
4343
run: |
44-
luarocks test plugin-template-scm-1.rockspec --prepare
44+
luarocks test cursor-text-objects-scm-1.rockspec --prepare
4545
4646
- name: test
4747
run: |

CHANGELOG.md

-35
Original file line numberDiff line numberDiff line change
@@ -1,36 +1 @@
11
# Changelog
2-
3-
## [1.3.2](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/compare/v1.3.1...v1.3.2) (2024-11-12)
4-
5-
6-
### Bug Fixes
7-
8-
* **luals:** Added missing diagnostics paths ([d5f93ef](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/commit/d5f93ef89c47ae5dd09c684526f7050a0f829e11))
9-
10-
## [1.3.1](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/compare/v1.3.0...v1.3.1) (2024-10-26)
11-
12-
13-
### Bug Fixes
14-
15-
* **urlchecker:** Added README.md + CHANGELOG.md as a checker ([a4b7d41](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/commit/a4b7d410f4d853d7bf98e4ca6dc198f6ea29bb8d))
16-
17-
## [1.3.0](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/compare/v1.2.0...v1.3.0) (2024-10-26)
18-
19-
20-
### Features
21-
22-
* **ci:** Added urlchecker.yml ([764f485](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/commit/764f4859522c6c810e75bd82eda6073ef4fc0c0c))
23-
24-
## [1.2.0](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/compare/v1.1.0...v1.2.0) (2024-10-26)
25-
26-
27-
### Features
28-
29-
* **ci:** Enabled llscheck.yml ([18273bf](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/commit/18273bf3526364ca05d2798318b86f59a3c124e8))
30-
31-
## [1.1.0](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/compare/v1.0.3...v1.1.0) (2024-10-26)
32-
33-
34-
### Features
35-
36-
* **ci:** Added better GitHub workflows ([da48f5a](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/commit/da48f5a27fb01e9c597d82931e551d10c31b94d0))

Makefile

-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
.PHONY: api_documentation llscheck luacheck stylua test
22

3-
api_documentation:
4-
nvim -u scripts/make_api_documentation/minimal_init.lua -l scripts/make_api_documentation/main.lua
5-
63
llscheck:
74
VIMRUNTIME=`nvim -l scripts/print_vimruntime_environment_variable.lua` llscheck --configpath .luarc.json .
85

@@ -13,5 +10,4 @@ stylua:
1310
stylua lua plugin scripts spec
1411

1512
test:
16-
eval $(luarocks path --lua-version 5.1 --bin)
1713
busted --helper spec/minimal_init.lua .

0 commit comments

Comments
 (0)