You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As pointed out by @niten94, empty lines in the man page are not just
unnecessary but also cause extra empty lines to be displayed with
alternative `man` implementations, e.g. `mandoc`. To test on Debian,
for example, mandoc's implementation is named `mman` and included in the
`mandoc` package.
Copy file name to clipboardExpand all lines: assets/packaging/micro.1
-23Lines changed: 0 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -11,31 +11,26 @@ micro \- A modern and intuitive terminal-based text editor
11
11
.RI [ OPTION ]...\&
12
12
.RI [ FILE [: LINE [: COL ]]]...\&
13
13
\& (only if the `parsecursor` option is enabled)
14
-
15
14
.SH DESCRIPTION
16
-
17
15
Micro is a terminal-based text editor that aims to be easy to use and intuitive, while also taking advantage of the full capabilities
18
16
of modern terminals. It comes as one single, batteries-included, static binary with no dependencies.
19
17
20
18
As the name indicates, micro aims to be somewhat of a successor to the nano editor by being easy to install and use in a pinch, but micro also aims to be
21
19
enjoyable to use full time, whether you work in the terminal because you prefer it (like me), or because you need to (over ssh).
22
20
23
21
Use Ctrl-q to quit, Ctrl-s to save, and Ctrl-g to open the in-editor help menu.
24
-
25
22
.SH OPTIONS
26
23
.PP
27
24
.B\-clean
28
25
.RS4
29
26
Clean the configuration directory and exit
30
27
.RE
31
-
32
28
.PP
33
29
.B\-config-dir
34
30
.Idir
35
31
.RS4
36
32
Specify a custom location for the configuration directory
37
33
.RE
38
-
39
34
.PP
40
35
.IR FILE : LINE [: COL ]
41
36
(only if the `parsecursor` option is enabled)
@@ -44,25 +39,21 @@ Specify a custom location for the configuration directory
44
39
.RS4
45
40
Specify a line and column to start the cursor at when opening a buffer
46
41
.RE
47
-
48
42
.PP
49
43
.B\-options
50
44
.RS4
51
45
Show all options help and exit
52
46
.RE
53
-
54
47
.PP
55
48
.B\-debug
56
49
.RS4
57
50
Enable debug mode (enables logging to ./log.txt)
58
51
.RE
59
-
60
52
.PP
61
53
.B\-profile
62
54
.RS4
63
55
Enable CPU profiling (writes profile info to ./micro.prof so it can be analyzed later with "go tool pprof micro.prof")
64
56
.RE
65
-
66
57
.PP
67
58
.B\-version
68
59
.RS4
@@ -71,41 +62,35 @@ Show the version number and information and exit
71
62
72
63
Micro's plugins can be managed at the command line with the following commands.
73
64
.RS4
74
-
75
65
.PP
76
66
.B\-plugininstall
77
67
.RI [ PLUGIN ]...
78
68
.RS4
79
69
Install plugin(s)
80
70
.RE
81
-
82
71
.PP
83
72
.B\-pluginremove
84
73
.RI [ PLUGIN ]...
85
74
.RS4
86
75
Remove plugin(s)
87
76
.RE
88
-
89
77
.PP
90
78
.B\-pluginupdate
91
79
.RI [ PLUGIN ]...
92
80
.RS4
93
81
Update plugin(s) (if no argument is given, updates all plugins)
94
82
.RE
95
-
96
83
.PP
97
84
.B\-pluginsearch
98
85
.RI [ PLUGIN ]...
99
86
.RS4
100
87
Search for a plugin
101
88
.RE
102
-
103
89
.PP
104
90
.B\-pluginlist
105
91
.RS4
106
92
List installed plugins
107
93
.RE
108
-
109
94
.PP
110
95
.B\-pluginavailable
111
96
.RS4
@@ -117,7 +102,6 @@ Micro's options can also be set via command line arguments for quick
117
102
adjustments. For real configuration, please use the settings.json
118
103
file (see 'help options').
119
104
.RS4
120
-
121
105
.PP
122
106
.BI\-< option >
123
107
.Ivalue
@@ -127,31 +111,24 @@ Set `option` to `value` for this session.
127
111
For example: `micro -syntax off file.c`
128
112
.RE
129
113
.RE
130
-
131
114
.PP
132
115
Use `micro -options` to see the full list of configuration options.
133
-
134
-
135
116
.SH CONFIGURATION
136
-
137
117
Micro uses $MICRO_CONFIG_HOME as the configuration directory.
138
118
If this environment variable is not set, it uses $XDG_CONFIG_HOME/micro instead.
139
119
If that environment variable is not set, it uses ~/.config/micro as the configuration directory.
140
120
In the documentation, we use ~/.config/micro to refer to the configuration directory
141
121
(even if it may in fact be somewhere else if you have set either of the above environment variables).
142
-
143
122
.SH NOTICE
144
123
This manpage is intended only to serve as a quick guide to the invocation of
145
124
micro and is not intended to replace the full documentation included with micro
146
125
which can be accessed from within micro. Micro tells you what key combination to
147
126
press to get help in the lower right.
148
-
149
127
.SH BUGS
150
128
A comprehensive list of bugs will not be listed in this manpage. See the Github
151
129
page at \fBhttps://github.com/zyedidia/micro/issues\fP for a list of known bugs
152
130
and to report any newly encountered bugs you may find. We strive to correct
153
131
bugs as swiftly as possible.
154
-
155
132
.SH COPYRIGHT
156
133
Copyright \(co 2020 Zachary Yedidia, et al. MIT license.
157
134
See \fBhttps://github.com/zyedidia/micro\fP for details.
0 commit comments