From ffee0d78c9bcbf04b41892dee613ebdc7ae0b95d Mon Sep 17 00:00:00 2001 From: bptato Date: Fri, 16 Dec 2022 16:01:55 +0100 Subject: Update visual home page, use name consistently --- doc/config.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'doc/config.md') diff --git a/doc/config.md b/doc/config.md index 6e9f0ea4..8d288c45 100644 --- a/doc/config.md +++ b/doc/config.md @@ -49,21 +49,21 @@ Following is a list of start-up options: visual-home url -Page opened when cha is called with the -V option (and no other pages are +Page opened when Chawan is called with the -V option (and no other pages are passed as arguments.) run-script JavaScript code -Script cha runs on start. Pages will not be loaded until this function +Script Chawan runs on start. Pages will not be loaded until this function exits. (setTimeout & friends do not block loading, though.) headless boolean -Whether cha should always start in headless mode. Enabled when cha is +Whether Chawan should always start in headless mode. Enabled when Chawan is called with -r. @@ -119,7 +119,7 @@ Network options are to be placed in the `[network]` section. prepend-https boolean -Whether or not cha should attempt loading "raw" URLs without a scheme as +Whether or not Chawan should attempt loading "raw" URLs without a scheme as https (e.g. wikipedia.org as https://wikipedia.org.) @@ -244,7 +244,7 @@ passed as arguments are matched as well. substitute JavaScript function -A JavaScript function cha will pass the input string to. If a new string is +A JavaScript function Chawan will pass the input string to. If a new string is returned, it will be parsed instead of the old one. @@ -301,8 +301,8 @@ name/ip address.) Either this or the `url` option must be specified. rewrite-url JavaScript function -A JavaScript function cha will pass the URL to. If a new URL is returned, -it will replace the old one. +A JavaScript function Chawan will pass the URL to. If a new URL is +returned, it will replace the old one. @@ -500,7 +500,7 @@ is typed in. A list of built-in pager functions can be found below. Go to the specified URL. Opens a prompt with the current URL when no parameters are specified; otherwise, the string passed is displayed in the prompt. If this string ends with a newline -(e.g. `pager.load("about:cha\n")`), the URL is loaded directly. +(e.g. `pager.load("about:chawan\n")`), the URL is loaded directly. -- cgit 1.4.1-2-gfad0 n/blame/src/html/env.nim?id=2f74b628f3c91860860cc19fc07db5c304e8e6ed'>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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148