Add cmd-k to delete current line
All checks were successful
Build / build (push) Successful in 2m31s
All checks were successful
Build / build (push) Successful in 2m31s
This commit is contained in:
parent
3e8d101eec
commit
d64779f660
10 changed files with 166 additions and 0 deletions
4
frontend/wailsjs/go/main/App.d.ts
vendored
4
frontend/wailsjs/go/main/App.d.ts
vendored
|
|
@ -8,4 +8,8 @@ export function LoadCurrentBuffer():Promise<string>;
|
|||
|
||||
export function ProcessText(arg1:main.ProcessTextRequest):Promise<void>;
|
||||
|
||||
export function PromptUser(arg1:string,arg2:any):Promise<void>;
|
||||
|
||||
export function SaveCurrentBuffer(arg1:string):Promise<void>;
|
||||
|
||||
export function TriggerTextProcess(arg1:string):Promise<void>;
|
||||
|
|
|
|||
|
|
@ -14,6 +14,14 @@ export function ProcessText(arg1) {
|
|||
return window['go']['main']['App']['ProcessText'](arg1);
|
||||
}
|
||||
|
||||
export function PromptUser(arg1, arg2) {
|
||||
return window['go']['main']['App']['PromptUser'](arg1, arg2);
|
||||
}
|
||||
|
||||
export function SaveCurrentBuffer(arg1) {
|
||||
return window['go']['main']['App']['SaveCurrentBuffer'](arg1);
|
||||
}
|
||||
|
||||
export function TriggerTextProcess(arg1) {
|
||||
return window['go']['main']['App']['TriggerTextProcess'](arg1);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue