add reviewer assigning
This commit is contained in:
@@ -354,6 +354,18 @@ func (k KeyBindings) canonicalPREditKey(key string, field int, confirming bool)
|
||||
return "y"
|
||||
case keyMatches(key, k.General.Reject), keyMatches(key, k.Input.Cancel):
|
||||
return "esc"
|
||||
case keyMatches(key, k.Navigation.Down):
|
||||
return "down"
|
||||
case keyMatches(key, k.Navigation.Up):
|
||||
return "up"
|
||||
case keyMatches(key, k.Navigation.PageDown):
|
||||
return "ctrl+d"
|
||||
case keyMatches(key, k.Navigation.PageUp):
|
||||
return "ctrl+u"
|
||||
case keyMatches(key, k.Navigation.First):
|
||||
return "g"
|
||||
case keyMatches(key, k.Navigation.Last):
|
||||
return "G"
|
||||
}
|
||||
}
|
||||
switch {
|
||||
|
||||
Reference in New Issue
Block a user