-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmodifiers_other.go
45 lines (40 loc) · 1.04 KB
/
modifiers_other.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright (c) 2021-2025 by Richard A. Wilkes. All rights reserved.
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, version 2.0. If a copy of the MPL was not distributed with
// this file, You can obtain one at http://mozilla.org/MPL/2.0/.
//
// This Source Code Form is "Incompatible With Secondary Licenses", as
// defined by the Mozilla Public License, version 2.0.
//go:build !darwin
package unison
import "bytes"
// OSMenuCmdModifier returns the OS's standard menu command key modifier.
func OSMenuCmdModifier() Modifiers {
return ControlModifier
}
func (m Modifiers) platformString() string {
if m == 0 {
return ""
}
var buffer bytes.Buffer
if m.ControlDown() {
buffer.WriteString("Ctrl+")
}
if m.OptionDown() {
buffer.WriteString("Alt+")
}
if m.ShiftDown() {
buffer.WriteString("Shift+")
}
if m.CapsLockDown() {
buffer.WriteString("CapsLock+")
}
if m.NumLockDown() {
buffer.WriteString("NumLock+")
}
if m.CommandDown() {
buffer.WriteString("Super+")
}
return buffer.String()
}