mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-27 17:35:07 +01:00
Limit Find Similar Note command to be triggered from Editor
Fixup indentation and comments
This commit is contained in:
parent
39a18e2080
commit
0bed410712
1 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue