@oh-my-pi/pi-natives 16.1.16 → 16.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/native/index.d.ts +3 -1
- package/native/index.js +2 -1
- package/package.json +6 -6
package/native/index.d.ts
CHANGED
|
@@ -162,7 +162,7 @@ export declare function __ompInstallTokioRuntime(): void
|
|
|
162
162
|
* `packages/natives/native/index.js` (which derives the name from
|
|
163
163
|
* `package.json#version`).
|
|
164
164
|
*/
|
|
165
|
-
export declare function
|
|
165
|
+
export declare function __piNativesV16_1_18(): void
|
|
166
166
|
|
|
167
167
|
/**
|
|
168
168
|
* Apply conservative pre-execution rewrites to a bash command.
|
|
@@ -1377,6 +1377,8 @@ export interface SearchResult {
|
|
|
1377
1377
|
error?: string
|
|
1378
1378
|
}
|
|
1379
1379
|
|
|
1380
|
+
export declare function setHangulCompatJamoWidthOverride(value: number): void
|
|
1381
|
+
|
|
1380
1382
|
/** Options for executing a shell command via brush-core. */
|
|
1381
1383
|
export interface ShellExecuteOptions {
|
|
1382
1384
|
/** Command string to execute in the shell. */
|
package/native/index.js
CHANGED
|
@@ -24,7 +24,7 @@ export const Shell = nativeBindings.Shell;
|
|
|
24
24
|
|
|
25
25
|
// functions
|
|
26
26
|
export const __ompInstallTokioRuntime = nativeBindings.__ompInstallTokioRuntime;
|
|
27
|
-
export const
|
|
27
|
+
export const __piNativesV16_1_18 = nativeBindings.__piNativesV16_1_18;
|
|
28
28
|
export const applyBashFixups = nativeBindings.applyBashFixups;
|
|
29
29
|
export const astEdit = nativeBindings.astEdit;
|
|
30
30
|
export const astGrep = nativeBindings.astGrep;
|
|
@@ -62,6 +62,7 @@ export const parseKittySequence = nativeBindings.parseKittySequence;
|
|
|
62
62
|
export const readImageFromClipboard = nativeBindings.readImageFromClipboard;
|
|
63
63
|
export const renderSnapcompactPng = nativeBindings.renderSnapcompactPng;
|
|
64
64
|
export const search = nativeBindings.search;
|
|
65
|
+
export const setHangulCompatJamoWidthOverride = nativeBindings.setHangulCompatJamoWidthOverride;
|
|
65
66
|
export const sliceWithWidth = nativeBindings.sliceWithWidth;
|
|
66
67
|
export const summarizeCode = nativeBindings.summarizeCode;
|
|
67
68
|
export const supportsLanguage = nativeBindings.supportsLanguage;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oh-my-pi/pi-natives",
|
|
3
|
-
"version": "16.1.
|
|
3
|
+
"version": "16.1.18",
|
|
4
4
|
"description": "Native Rust bindings for grep, clipboard, image processing, syntax highlighting, PTY, and shell operations via N-API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://omp.sh",
|
|
@@ -66,10 +66,10 @@
|
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
68
|
"optionalDependencies": {
|
|
69
|
-
"@oh-my-pi/pi-natives-linux-x64": "16.1.
|
|
70
|
-
"@oh-my-pi/pi-natives-linux-arm64": "16.1.
|
|
71
|
-
"@oh-my-pi/pi-natives-darwin-x64": "16.1.
|
|
72
|
-
"@oh-my-pi/pi-natives-darwin-arm64": "16.1.
|
|
73
|
-
"@oh-my-pi/pi-natives-win32-x64": "16.1.
|
|
69
|
+
"@oh-my-pi/pi-natives-linux-x64": "16.1.18",
|
|
70
|
+
"@oh-my-pi/pi-natives-linux-arm64": "16.1.18",
|
|
71
|
+
"@oh-my-pi/pi-natives-darwin-x64": "16.1.18",
|
|
72
|
+
"@oh-my-pi/pi-natives-darwin-arm64": "16.1.18",
|
|
73
|
+
"@oh-my-pi/pi-natives-win32-x64": "16.1.18"
|
|
74
74
|
}
|
|
75
75
|
}
|