A fork of https://github.com/ueokande/vim-vixen
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.4 KiB
67 lines
1.4 KiB
5 years ago
|
import { spawn } from 'child_process';
|
||
6 years ago
|
|
||
5 years ago
|
const readLinux = (): Promise<string> => {
|
||
6 years ago
|
let stdout = '', stderr = '';
|
||
5 years ago
|
return new Promise((resolve) => {
|
||
6 years ago
|
let xsel = spawn('xsel', ['--clipboard', '--output']);
|
||
|
xsel.stdout.on('data', (data) => {
|
||
|
stdout += data;
|
||
|
});
|
||
|
xsel.stderr.on('data', (data) => {
|
||
|
stderr += data;
|
||
|
});
|
||
|
xsel.on('close', (code) => {
|
||
|
if (code !== 0) {
|
||
|
throw new Error(`xsel returns ${code}: ${stderr}`)
|
||
|
}
|
||
|
resolve(stdout);
|
||
|
});
|
||
|
});
|
||
|
};
|
||
|
|
||
5 years ago
|
const writeLinux = (data: string): Promise<string> => {
|
||
|
let stderr = '';
|
||
|
return new Promise((resolve) => {
|
||
6 years ago
|
let xsel = spawn('xsel', ['--clipboard', '--input']);
|
||
|
xsel.stderr.on('data', (data) => {
|
||
|
stderr += data;
|
||
|
});
|
||
|
xsel.on('close', (code) => {
|
||
|
if (code !== 0) {
|
||
|
throw new Error(`xsel returns ${code}: ${stderr}`)
|
||
|
}
|
||
|
resolve();
|
||
|
});
|
||
|
xsel.stdin.write(data);
|
||
|
xsel.stdin.end();
|
||
|
});
|
||
|
};
|
||
|
|
||
5 years ago
|
class UnsupportedError extends Error {
|
||
|
constructor(platform: string) {
|
||
|
super();
|
||
|
this.message = `Unsupported platform: ${platform}`;
|
||
|
}
|
||
|
}
|
||
6 years ago
|
|
||
5 years ago
|
const read = () => {
|
||
6 years ago
|
switch (process.platform) {
|
||
5 years ago
|
case 'linux':
|
||
|
return readLinux();
|
||
6 years ago
|
}
|
||
5 years ago
|
throw new UnsupportedError(process.platform);
|
||
6 years ago
|
}
|
||
|
|
||
5 years ago
|
const write = (data: string) => {
|
||
|
switch (process.platform) {
|
||
|
case 'linux':
|
||
|
return writeLinux(data);
|
||
|
}
|
||
|
throw new UnsupportedError(process.platform);
|
||
|
}
|
||
|
|
||
|
export {
|
||
|
read,
|
||
|
write,
|
||
|
};
|