mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-06 13:22:12 +00:00
Add hints to Modal for available Keybindings
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
import { App, SuggestModal, Notice, request, MarkdownRenderer } from 'obsidian';
|
import { App, SuggestModal, Notice, request, MarkdownRenderer, Instruction, Platform } from 'obsidian';
|
||||||
import { KhojSetting } from 'src/settings';
|
import { KhojSetting } from 'src/settings';
|
||||||
import { getVaultAbsolutePath } from 'src/utils';
|
import { getVaultAbsolutePath } from 'src/utils';
|
||||||
|
|
||||||
@@ -27,6 +27,27 @@ export class KhojModal extends SuggestModal<SearchResult> {
|
|||||||
});
|
});
|
||||||
this.rerank = false
|
this.rerank = false
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Add Hints to Modal for available Keybindings
|
||||||
|
const modalInstructions: Instruction[] = [
|
||||||
|
{
|
||||||
|
command: '↑↓',
|
||||||
|
purpose: 'to navigate',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
command: '↵',
|
||||||
|
purpose: 'to open',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
command: Platform.isMacOS ? 'cmd ↵': 'ctrl ↵',
|
||||||
|
purpose: 'to rerank',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
command: 'esc',
|
||||||
|
purpose: 'to dismiss',
|
||||||
|
},
|
||||||
|
]
|
||||||
|
this.setInstructions(modalInstructions);
|
||||||
}
|
}
|
||||||
|
|
||||||
async getSuggestions(query: string): Promise<SearchResult[]> {
|
async getSuggestions(query: string): Promise<SearchResult[]> {
|
||||||
|
|||||||
Reference in New Issue
Block a user