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