Fix enter key

This commit is contained in:
Zhigang Fang
2017-11-27 23:45:37 +08:00
parent a449c6c635
commit 060d9550d4
2 changed files with 13 additions and 1 deletions

8
CHANGELOG Normal file
View File

@@ -0,0 +1,8 @@
Changelog
---------------
### 1.1.0
* In recent entries, sort project by usage.
* When showing recent entries, enter key autocomplete instead of start timer.

View File

@@ -537,7 +537,11 @@ extension ViewController: NSTextFieldDelegate {
case #selector(textView.insertTab(_:)):
insertSelection()
case #selector(textView.insertNewline(_:)):
self.viewModel.startTimer()
if isShowingRecentEntries {
insertSelection()
} else {
self.viewModel.startTimer()
}
default:
return false
}