diff --git a/README.md b/README.md index 026d964..ac2a0ba 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,29 @@ You can activate this plugin within Obsidian by doing the following: Download `main.js`, `manifest.json`, `styles.css` from the [latest release](https://github.com/vslinko/obsidian-zoom/releases/latest) and put them into `/.obsidian/plugins/obsidian-zoom` folder. +## Features + +### Zoom in to a specific list or heading + +Hide everything except the list/heading and its content. + +| Command | Default hotkey (Windows/Linux) | Default hotkey (MacOS) | +| ---------------------------- | :-----------------------------------------: | :--------------------------------------------: | +| Zoom in | Ctrl. | Command. | +| Zoom out the entire document | CtrlShift. | CommandShift. | + +| Setting | Default value | +| -------------------------------------- | :-----------: | +| Zooming in when clicking on the bullet | `true` | + +### Debug mode + +Open DevTools (Command+Option+I or Control+Shift+I) to copy the debug logs. + +| Setting | Default value | +| ---------- | :-----------: | +| Debug mode | `false` | + ## Pricing This plugin is free for everyone, however, if you would like to thank me diff --git a/src/features/ZoomFeature.ts b/src/features/ZoomFeature.ts index c007aad..d6b4b02 100644 --- a/src/features/ZoomFeature.ts +++ b/src/features/ZoomFeature.ts @@ -13,7 +13,7 @@ export class ZoomFeature implements IFeature { async load() { this.plugin.addCommand({ id: "zoom-in", - name: "Zoom in to the current list item", + name: "Zoom in", callback: this.obsidianService.createCommandCallback( this.zoomService.zoomIn.bind(this.zoomService) ),