Changes for plugin submission. (#76)

* Adjusted naming in README header.
* Remove extra cleanup code.
This commit is contained in:
Jason Heddings 2025-09-22 12:59:17 -06:00 committed by GitHub
parent e084865eab
commit 65c23a1de8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

View file

@ -1,4 +1,4 @@
# STOMP - Obsidian Foot Pedal Plugin
# STOMP - Foot Pedal Integration for Obsidian
A simple Obsidian plugin that enables hands-free reading using foot pedals. STOMP receives system key events to provide smooth, customizable scrolling through your notes. I initially wrote this to integrate with my [Coda STOMP](https://www.codamusictech.com/) (hence the name), but it should work with any pedal.

View file

@ -57,8 +57,6 @@ export default class StompPlugin extends Plugin {
}
async onunload() {
document.removeEventListener("keydown", this.handleKeyDown, { capture: true });
this.logger.info("Plugin unloaded");
}