-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbasicCalculator.js
39 lines (34 loc) · 1.04 KB
/
basicCalculator.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { ProcessSync } from "../qjs-ext-lib/src/process.js";
import Fzf from "../justjs/fzf.js";
import { handleFzfExec, setCommonFzfArgs } from "./utils.js";
export default async function BasicCalculator() {
const fzfArgs = new Fzf().infoCommand('"echo {fzf:query} | bc "')
.query("' '")
.bind("'change:transform-header(echo {fzf:query} | bc 2>&1 >/dev/null)'")
.preview(`"echo {fzf:query} | tr ';' '\n';"`)
.info("right").prompt("''").separator("' '")
.bind("enter:clear-query")
.previewLabel("' Basic calculator (bc) '");
switch (USER_ARGUMENTS.preset) {
case "1":
fzfArgs.previewWindow("bottom,90%,wrap,border-top");
break;
case "2":
fzfArgs.previewWindow("top,90%,wrap,border-bottom");
break;
case "3":
default:
fzfArgs.previewWindow("right,50%,wrap,border-left");
break;
}
setCommonFzfArgs(fzfArgs);
fzfArgs.separator("''");
const bc = new ProcessSync(
fzfArgs.toArray(),
{
input: "",
useShell: true,
},
);
await handleFzfExec(bc);
}