2 Commits

Author SHA1 Message Date
187c44e43e implement suggestion for unknown command in console application
suggestion is based on two principles:

- first suggest commands the begin with the unknown name, to suggest
  commands after accidentally hitting enter
- second find similar commands by computing the levenshtein distance
  which is a measurement on how many changes need to be made to convert
  one string into another. This is perfect for finding typos.
2016-12-03 01:17:50 +01:00
1d3495d84d Alternative implementation for Unknown command suggestions
alternative implementation for #12661, proof of concept, does not
include filtering by similarity yet.

issue #12659
2016-12-03 01:13:28 +01:00