From 5d139f432743d1bc0e7833566961c9bd32b8b6c5 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Fri, 20 May 2022 20:09:59 -0700 Subject: ensure Filename is writable when opened outside a terminal Thanks Jimmy Miller for reporting this. --- main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.lua b/main.lua index 8c8bf71..3960094 100644 --- a/main.lua +++ b/main.lua @@ -57,7 +57,7 @@ Line_width = nil -- maximum width available to either text or drawings, in pixe Zoom = 1.5 -Filename = 'lines.txt' +Filename = love.filesystem.getUserDirectory()..'/lines.txt' function love.load(arg) -- maximize window -- cgit 1.4.1-2-gfad0 ='this.form.submit();'> mirror of ranger - a simple, vim-like file managerakspecs <akspecs@tilde.institute>
summary refs log tree commit diff stats
path: root/README.md
blob: edbc2c4d20350e697f333bdd0d48aafc64a9f6b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113