2019-11-08 12:02:00 -05:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
|
2019-11-08 16:27:08 -05:00
|
|
|
namespace Aviat\Kilo;
|
2019-11-08 12:02:00 -05:00
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// ! App Constants
|
|
|
|
// -----------------------------------------------------------------------------
|
2019-12-05 14:54:00 -05:00
|
|
|
const KILO_VERSION = '0.3.0';
|
|
|
|
const KILO_TAB_STOP = 4;
|
|
|
|
const KILO_QUIT_TIMES = 3;
|
2021-03-18 16:26:30 -04:00
|
|
|
|
|
|
|
const NO_MATCH = -1;
|