aboutsummaryrefslogtreecommitdiffstats
path: root/c_defs.go
diff options
context:
space:
mode:
authorJoe <rbo@gmx.us>2023-12-27 20:20:20 +0100
committerJoe <rbo@gmx.us>2023-12-27 20:20:20 +0100
commit1578a5dc80edba9106a0c18282e3b69231a91b2a (patch)
treef37b71ada56577a189811662ac7cd777c3c475d2 /c_defs.go
parentdef (diff)
downloadhardflip-1578a5dc80edba9106a0c18282e3b69231a91b2a.tar.gz
hardflip-1578a5dc80edba9106a0c18282e3b69231a91b2a.tar.bz2
hardflip-1578a5dc80edba9106a0c18282e3b69231a91b2a.tar.xz
hardflip-1578a5dc80edba9106a0c18282e3b69231a91b2a.tar.zst
hardflip-1578a5dc80edba9106a0c18282e3b69231a91b2a.zip
cool
Diffstat (limited to 'c_defs.go')
-rw-r--r--c_defs.go16
1 files changed, 13 insertions, 3 deletions
diff --git a/c_defs.go b/c_defs.go
index 4f57145..55a9438 100644
--- a/c_defs.go
+++ b/c_defs.go
@@ -39,7 +39,7 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* hardflip: src/c_defs.go
- * Wed Dec 27 12:37:08 2023
+ * Wed Dec 27 15:55:11 2023
* Joe
*
* constants
@@ -50,7 +50,11 @@ package main
const (
W = 0
H = 1
- KEYS_HINTS = `
+ DATA_DIR_NAME = "hardflip"
+)
+
+const (
+ NORMAL_KEYS_HINTS = `
(q)uit -
[x](a)dd/(i)nsert host -
[x](e)dit -
@@ -59,7 +63,13 @@ const (
[x](m)kdir -
(c-r) reload -
[x](?) help`
- DATA_DIR_NAME = "hardflip"
+ DELETE_KEYS_HINTS = `
+(q)uit -
+(y)yes -
+(n)o`
+)
+
+const (
NORMAL_MODE = 0
DELETE_MODE = 1
)