Skip to content

Commit

Permalink
Add acknowledgement to Lishid and remove unnecessary async
Browse files Browse the repository at this point in the history
  • Loading branch information
nmady committed Aug 9, 2021
1 parent 2152f36 commit 7e1af83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ Please let me know how this plugin can be improved.

### Acknowledgements

A huge thank you to **lynchjames**, whose [Note Refactor Plugin](https://github.com/lynchjames/note-refactor-obsidian) formed the base for this plugin, and to **THeK3nger** for the [Obsidian Plugin Template](https://github.com/THeK3nger/obsidian-plugin-template), and to [roshanshariff](https://github.com/roshanshariff) for help debugging and refactoring!
A huge thank you to **lynchjames**, whose [Note Refactor Plugin](https://github.com/lynchjames/note-refactor-obsidian) formed the base for this plugin, to **THeK3nger** for the [Obsidian Plugin Template](https://github.com/THeK3nger/obsidian-plugin-template), to [Lishid](https://github.com/lishid) for a helpful code review, and to [roshanshariff](https://github.com/roshanshariff) for help debugging and refactoring!
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export default class MultilineFormattingPlugin extends Plugin {
this.addCommand({
id: style.id,
name: style.nickname,
editorCallback: async (editor: Editor, view: MarkdownView) => {
editorCallback: (editor: Editor, view: MarkdownView) => {
this.formatSelection(editor, view, style);
},
});
Expand Down

0 comments on commit 7e1af83

Please sign in to comment.