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

chore(luadoc): Let mapping items accept string[] #944

Merged
merged 3 commits into from
Mar 26, 2025

Conversation

js0ny
Copy link
Contributor

@js0ny js0ny commented Mar 25, 2025

Summary

Update luadoc of mappings, enabling suggestion on adding multiple mappings to one action

mappings = {
	agenda = {
		-- This will not prompt an warning now
        org_agenda_earlier = { "[[", "<" },
        org_agenda_later = { "]]", ">" },
	}
}

Changes

  • lua/orgmode/config/_meta.lua, add type of mapping string | string[]
    an example is
      ---@class OrgMappingsAgenda
    + ---@field org_agenda_later? string | string[] Default: 'f' 
    - ---@field org_agenda_later? string Default: 'f' 

Checklist

I confirm that I have:

  • Followed the
    Conventional Commits
    specification
    (e.g., feat: add new feature, fix: correct bug,
    docs: update documentation).
  • My PR title also follows the conventional commits specification.
  • Updated relevant documentation, if necessary.
  • Thoroughly tested my changes.
  • Added tests (if applicable) and verified existing tests pass with
    make test.
  • Checked for breaking changes and documented them, if any.

Copy link
Member

@kristijanhusak kristijanhusak left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice catch! Let's just create an alias for it so it's more centralized.

@@ -45,124 +45,124 @@
---@field scheduled_reminder? boolean Enable notifiactions for DEADLINE dates. Default: true

---@class OrgMappingsGlobal
---@field org_agenda? string Mappings used to open agenda prompt. Default: '<prefix>a'
---@field org_capture? string Mappings used to open capture prompt. Default: '<prefix>c'
---@field org_agenda? string | string[] Mappings used to open agenda prompt. Default: '<prefix>a'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's create an alias and use alias instead:

---@alias OrgMappingValue string | string[]


---@field org_agenda? OrgMappingValue Mappings used to open agenda prompt. Default: '<prefix>a'
---etc.

@js0ny
Copy link
Contributor Author

js0ny commented Mar 26, 2025

Nice catch! Let's just create an alias for it so it's more centralized.

Done! Updated as suggested.

Copy link
Member

@kristijanhusak kristijanhusak left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@kristijanhusak kristijanhusak merged commit 79939cc into nvim-orgmode:master Mar 26, 2025
17 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants