m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-15 14:53:47 -05:00

Exit status 130 when fzf is terminated by the user

Related: #345
This commit is contained in:
Junegunn Choi
2015-09-18 10:25:07 +09:00
parent 8764be07e2
commit ca19762e58
3 changed files with 8 additions and 6 deletions

View File

@@ -49,7 +49,8 @@ const (
)
const (
exitOk = 0
exitNoMatch = 1
exitError = 2
exitOk = 0
exitNoMatch = 1
exitError = 2
exitInterrupt = 130
)