本文整理汇总了TypeScript中electron.remote.app.getVersion方法的典型用法代码示例。如果您正苦于以下问题:TypeScript remote.app.getVersion方法的具体用法?TypeScript remote.app.getVersion怎么用?TypeScript remote.app.getVersion使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类electron.remote.app
的用法示例。
在下文中一共展示了remote.app.getVersion方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: function
value: function() {
// Note: First and second arguments are related to Electron
const a = remote.process.argv.slice(2);
a.push(
'--cmd', `let\ g:nyaovim_version="${remote.app.getVersion()}"`,
'--cmd', `set\ rtp+=${join(__dirname, '..', 'runtime').replace(' ', '\ ')}`
);
// XXX:
// Swap files are disabled because it shows message window on start up but frontend can't detect it.
a.push('-n');
return a;
},
示例2: function
value: function() {
// Note:
// First and second arguments are related to Electron
// XXX:
// Spectron additionally passes many specific arguments to process and 'nvim' process
// will fail because of them. As a workaround, we stupidly ignore arguments on E2E tests.
const a = process.env.NYAOVIM_E2E_TEST_RUNNING ? [] : remote.process.argv.slice(2);
a.push(
'--cmd', `let\ g:nyaovim_version="${remote.app.getVersion()}"`,
'--cmd', `set\ rtp+=${join(__dirname, '..', 'runtime').replace(' ', '\ ')}`,
);
// XXX:
// Swap files are disabled because it shows message window on start up but frontend can't detect it.
a.push('-n');
return a;
},