Skip to content

Commit

Permalink
use ctrl on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobweber committed Mar 11, 2020
1 parent 2e15d16 commit 949b0fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/preferences.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export interface Preferences {
};

const defaultPrefs = {
accelerator: 'Alt+Space'
accelerator: process.platform === 'linux' ? 'Control+Space' : 'Alt+Space'
};

interface Defaults {
Expand Down

0 comments on commit 949b0fb

Please sign in to comment.