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: Limit ftplugin to buffer and avoid early lua requires #1

Closed

Conversation

Slotos
Copy link
Owner

@Slotos Slotos commented Mar 4, 2025

This changes ftplugin behaviour to:

  • create user commands confined to the buffer it was triggered on
  • avoid filesystem lookups of require (they add up) by postponing them until user command gets invoked
  • skip loading if it has already been executed in a buffer

To deduplicate ftplugins, lua's dofile is used to load a specific file that holds all shared commands. This is equivalent to vimscript standard source approach.

These make ftplugin portion of this plugin behave like a good neighbor ftplugin - its changes are buffer local, as it's invoked when a buffer filetype matches.

Additionally, ftplugins now read global disable_typescript_tools variable, returning early if it's set. Not a common behaviour for ftplugins in general, but a good way to give users fine control over plugin behaviour nonetheless.

Not tackled is cleanup in case buffer filetype changes without reloading. I don't think routines for that currently exists, in fact.

@Slotos Slotos force-pushed the skip-filesystem-lookups-and-stay-in-buffer-ftplugin branch 3 times, most recently from d1fdcab to ca37ca0 Compare March 4, 2025 18:36
Slotos added 2 commits March 4, 2025 19:53
This changes ftplugin behaviour to:
- create user commands confined to the buffer it was triggered on
- avoid filesystem lookups of require (they add up) by postponing
  them until user command gets invoked
- skip loading if it has already been executed in a buffer

To deduplicate ftplugins, lua's `dofile` is used to load a specific
file that holds all shared commands. This is equivalent to vimscript
standard `source` approach.

These make ftplugin portion of this plugin behave like a good neighbor
ftplugin - its changes are buffer local, as it's invoked when a buffer
filetype matches.

Additionally, ftplugins now read global `disable_typescript_tools`
variable, returning early if it's set. Not a common behaviour for
ftplugins in general, but a good way to give users fine control over
plugin behaviour nonetheless.

Not tackled is cleanup in case buffer filetype changes without reloading.
I don't think routines for that currently exists, in fact.
@Slotos Slotos force-pushed the skip-filesystem-lookups-and-stay-in-buffer-ftplugin branch from ca37ca0 to d0d8bfa Compare March 4, 2025 19:10
This fixes nightly test failures. This also changes behaviour in complex
scenarios most likely, as instead of matching just the last node, we now
consider all nodes in the match.
@Slotos Slotos force-pushed the skip-filesystem-lookups-and-stay-in-buffer-ftplugin branch from 9284003 to 35e5ce5 Compare March 4, 2025 19:45
@Slotos Slotos closed this Mar 4, 2025
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.

1 participant