Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(keymap): added [ and ] pending operators #1

Merged
merged 1 commit into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/ask_a_question.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Ask a question
url: https://github.com/ColinKennedy/nvim-best-practices-plugin-template/discussions
url: https://github.com/ColinKennedy/cursor-text-objects.nvim/discussions
about: Use Github discussions instead
16 changes: 8 additions & 8 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@ body:
- type: markdown
attributes:
value: |
**Before** reporting an issue, make sure to read the [documentation](https://github.com/ColinKennedy/nvim-best-practices-plugin-template)
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))
**Before** reporting an issue, make sure to read the [documentation](https://github.com/ColinKennedy/cursor-text-objects.nvim)
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))

Usage questions such as ***"How do I...?"*** belong in [Discussions](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/discussions) and will be closed.
Usage questions such as ***"How do I...?"*** belong in [Discussions](https://github.com/ColinKennedy/cursor-text-objects.nvim/discussions) and will be closed.
- type: checkboxes
attributes:
label: Did you read the documentation and check existing issues?
description: Make sure you checked and all of the below before submitting an issue
options:
- 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
- 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
required: true
- label: I have updated the plugin to the latest version before submitting this issue
required: true
- 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
- 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
required: true
- type: input
attributes:
Expand Down Expand Up @@ -58,12 +58,12 @@ body:
- type: textarea
attributes:
label: Health
description: Attach the output of `:checkhealth plugin_template` here
description: Attach the output of `:checkhealth cursor_text_objects` here
render: log
- type: textarea
attributes:
label: Log
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`
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`
render: log
- type: textarea
attributes:
Expand All @@ -77,7 +77,7 @@ body:
spec = {
{
-- Add anything you need here (configuration, other plugins, etc)
"ColinKennedy/nvim-best-practices-plugin-template",
"ColinKennedy/cursor-text-objects.nvim",
},
})
render: lua
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,10 @@ jobs:
neovim: true
version: stable

- name: Create API Documentation
run: |
nvim --version
make api_documentation

- name: Create User Documentation
uses: kdheepak/panvimdoc@main
with:
vimdoc: plugin-template
vimdoc: cursor-text-objects
version: "Neovim >= 0.8.0"
demojify: true
treesitter: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

- name: build
run: |
luarocks test plugin-template-scm-1.rockspec --prepare
luarocks test cursor-text-objects-scm-1.rockspec --prepare

- name: test
run: |
Expand Down
35 changes: 0 additions & 35 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,36 +1 @@
# Changelog

## [1.3.2](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/compare/v1.3.1...v1.3.2) (2024-11-12)


### Bug Fixes

* **luals:** Added missing diagnostics paths ([d5f93ef](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/commit/d5f93ef89c47ae5dd09c684526f7050a0f829e11))

## [1.3.1](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/compare/v1.3.0...v1.3.1) (2024-10-26)


### Bug Fixes

* **urlchecker:** Added README.md + CHANGELOG.md as a checker ([a4b7d41](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/commit/a4b7d410f4d853d7bf98e4ca6dc198f6ea29bb8d))

## [1.3.0](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/compare/v1.2.0...v1.3.0) (2024-10-26)


### Features

* **ci:** Added urlchecker.yml ([764f485](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/commit/764f4859522c6c810e75bd82eda6073ef4fc0c0c))

## [1.2.0](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/compare/v1.1.0...v1.2.0) (2024-10-26)


### Features

* **ci:** Enabled llscheck.yml ([18273bf](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/commit/18273bf3526364ca05d2798318b86f59a3c124e8))

## [1.1.0](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/compare/v1.0.3...v1.1.0) (2024-10-26)


### Features

* **ci:** Added better GitHub workflows ([da48f5a](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/commit/da48f5a27fb01e9c597d82931e551d10c31b94d0))
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
.PHONY: api_documentation llscheck luacheck stylua test

api_documentation:
nvim -u scripts/make_api_documentation/minimal_init.lua -l scripts/make_api_documentation/main.lua

llscheck:
VIMRUNTIME=`nvim -l scripts/print_vimruntime_environment_variable.lua` llscheck --configpath .luarc.json .

Expand All @@ -13,5 +10,4 @@ stylua:
stylua lua plugin scripts spec

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