Alt+Enter to secondary toot
This commit is contained in:
parent
6c69954ec4
commit
1361958e8d
|
@ -29,6 +29,13 @@ $(function($) {
|
|||
return false;
|
||||
}
|
||||
}
|
||||
//Alt+Enter:セカンダリー
|
||||
if (event.metaKey || event.altKey && wv) {
|
||||
if (e.keyCode === 13) {
|
||||
sec();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
//Shift+Space:Markdownゼロ幅スペース
|
||||
if (event.shiftKey) {
|
||||
|
|
|
@ -16,6 +16,8 @@ const join = require('path').join;
|
|||
var JSON5 = require('json5');
|
||||
// アプリケーションをコントロールするモジュール
|
||||
const app = electron.app;
|
||||
|
||||
//app.disableHardwareAcceleration()
|
||||
// ウィンドウを作成するモジュール
|
||||
const BrowserWindow = electron.BrowserWindow;
|
||||
const {
|
||||
|
|
Loading…
Reference in New Issue
Block a user