diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/constants.go | 7 | ||||
| -rw-r--r-- | src/terminal.go | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/constants.go b/src/constants.go index 9a4fc29f..1cc4f81f 100644 --- a/src/constants.go +++ b/src/constants.go @@ -49,7 +49,8 @@ const ( ) const ( - exitOk = 0 - exitNoMatch = 1 - exitError = 2 + exitOk = 0 + exitNoMatch = 1 + exitError = 2 + exitInterrupt = 130 ) diff --git a/src/terminal.go b/src/terminal.go index 5e8300f9..9a92ba43 100644 --- a/src/terminal.go +++ b/src/terminal.go @@ -791,7 +791,7 @@ func (t *Terminal) Loop() { exit(exitNoMatch) case reqQuit: C.Close() - exit(exitError) + exit(exitInterrupt) } } t.placeCursor() |
