Fix command ID

This commit is contained in:
Simon Yang 2023-03-13 22:13:32 +11:00
parent ca66fb7641
commit 7490303a87

View file

@ -65,6 +65,8 @@ export default class AICommanderPlugin extends Plugin {
} }
const messages = []; const messages = [];
console.log(contextPrompt);
if (contextPrompt) { if (contextPrompt) {
messages.push({ messages.push({
@ -382,7 +384,7 @@ export default class AICommanderPlugin extends Plugin {
}); });
this.addCommand({ this.addCommand({
id: 'prompt-text', id: 'pdf-text',
name: 'Generate text from prompt in context of the above PDF', name: 'Generate text from prompt in context of the above PDF',
editorCallback: (editor: Editor, view: MarkdownView) => { editorCallback: (editor: Editor, view: MarkdownView) => {
const onSubmit = (prompt: string) => { const onSubmit = (prompt: string) => {
@ -403,7 +405,7 @@ export default class AICommanderPlugin extends Plugin {
}); });
this.addCommand({ this.addCommand({
id: 'prompt-text-selected', id: 'pdf-text-selected',
name: 'Generate text from the selected text in context of the above PDF', name: 'Generate text from the selected text in context of the above PDF',
editorCallback: (editor: Editor, view: MarkdownView) => { editorCallback: (editor: Editor, view: MarkdownView) => {
const selectedText = editor.getSelection(); const selectedText = editor.getSelection();