Limit Find Similar Note command to be triggered from Editor

Fixup indentation and comments
This commit is contained in:
Debanjum Singh Solanky 2023-01-17 19:34:48 -03:00
parent 39a18e2080
commit 0bed410712

View file

@ -10,7 +10,7 @@ export default class Khoj extends Plugin {
async onload() {
await this.loadSettings();
// Add a search command. It can be triggered from anywhere
// Add search command. It can be triggered from anywhere
this.addCommand({
id: 'search',
name: 'Search',
@ -21,11 +21,11 @@ export default class Khoj extends Plugin {
}
});
// Add a similar notes command
// Add similar notes command. It can only be triggered from the editor
this.addCommand({
id: 'similar',
name: 'Find Similar Notes',
checkCallback: (checking) => {
editorCheckCallback: (checking) => {
if (!checking && this.settings.connectedToBackend)
new KhojModal(this.app, this.settings, true).open();
return this.settings.connectedToBackend;
@ -36,8 +36,8 @@ export default class Khoj extends Plugin {
this.addRibbonIcon('search', 'Khoj', (_: MouseEvent) => {
// Called when the user clicks the icon.
this.settings.connectedToBackend
? new KhojModal(this.app, this.settings).open()
: new Notice(`Ensure Khoj backend is running and Khoj URL is pointing to it in the plugin settings`);
? new KhojModal(this.app, this.settings).open()
: new Notice(`Ensure Khoj backend is running and Khoj URL is pointing to it in the plugin settings`);
});
// Add a settings tab so the user can configure khoj