From 12c3b8c77758f2288c73ec3b4af9ad1f2171061f Mon Sep 17 00:00:00 2001 From: elioat Date: Sun, 9 Jun 2024 19:46:59 -0400 Subject: * --- lua/chupacabra/repl.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lua/chupacabra/repl.lua') diff --git a/lua/chupacabra/repl.lua b/lua/chupacabra/repl.lua index 55e10a4..6abbf46 100644 --- a/lua/chupacabra/repl.lua +++ b/lua/chupacabra/repl.lua @@ -2,14 +2,14 @@ local chupacabra = require("chupacabra") -- not a great, but a passable repl local function table_to_string(t) - local str = "{" + local str = "[" for i, v in ipairs(t) do if i > 1 then - str = str .. ", " + str = str .. " " end str = str .. tostring(v) end - str = str .. "}" + str = str .. "]" return str end -- cgit 1.4.1-2-gfad0 aster'>master mirror of ranger - a simple, vim-like file managerakspecs <akspecs@tilde.institute>
summary refs log tree commit diff stats
path: root/ranger/container/tags.py
blob: 8d8c46e5c3a29943d86eeae5bc343080c18195ab (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