1
1
<!DOCTYPE HTML>
2
- < html lang ="en " class ="light " dir ="ltr ">
2
+ < html lang ="en " class ="rust " dir ="ltr ">
3
3
< head >
4
4
<!-- Book generated using mdBook -->
5
5
< meta charset ="UTF-8 ">
36
36
<!-- Provide site root to javascript -->
37
37
< script >
38
38
var path_to_root = "" ;
39
- var default_theme = window . matchMedia ( "(prefers-color-scheme: dark)" ) . matches ? "navy" : "light " ;
39
+ var default_theme = window . matchMedia ( "(prefers-color-scheme: dark)" ) . matches ? "navy" : "rust " ;
40
40
</ script >
41
41
42
42
<!-- Work around some values being stored in localStorage wrapped in quotes -->
61
61
try { theme = localStorage . getItem ( 'mdbook-theme' ) ; } catch ( e ) { }
62
62
if ( theme === null || theme === undefined ) { theme = default_theme ; }
63
63
var html = document . querySelector ( 'html' ) ;
64
- html . classList . remove ( 'light ' )
64
+ html . classList . remove ( 'rust ' )
65
65
html . classList . add ( theme ) ;
66
66
var body = document . querySelector ( 'body' ) ;
67
67
body . classList . remove ( 'no-js' )
88
88
89
89
< nav id ="sidebar " class ="sidebar " aria-label ="Table of contents ">
90
90
< div class ="sidebar-scrollbox ">
91
- < ol class ="chapter "> < li class ="chapter-item expanded affix "> < a href ="introduction.html " class ="active "> Introduction</ a > </ li > < li class ="chapter-item expanded "> < a href ="installation.html "> < strong aria-hidden ="true "> 1.</ strong > Installation</ a > </ li > < li class ="chapter-item expanded "> < a href ="shell_integration.html "> < strong aria-hidden ="true "> 2.</ strong > Shell Integration</ a > </ li > < li class ="chapter-item expanded "> < a href ="usage.html "> < strong aria-hidden ="true "> 3.</ strong > Usage</ a > </ li > < li class ="chapter-item expanded "> < a href ="license.html "> < strong aria-hidden ="true "> 4.</ strong > License</ a > </ li > < li class =" chapter-item expanded " > < a href =" contributing.html " > < strong aria-hidden =" true " > 5. </ strong > Contributing </ a > </ li > < /ol >
91
+ < ol class ="chapter "> < li class ="chapter-item expanded affix "> < a href ="introduction.html " class ="active "> Introduction</ a > </ li > < li class ="chapter-item expanded "> < a href ="installation.html "> < strong aria-hidden ="true "> 1.</ strong > Installation</ a > </ li > < li class ="chapter-item expanded "> < a href ="shell_integration.html "> < strong aria-hidden ="true "> 2.</ strong > Shell Integration</ a > </ li > < li class ="chapter-item expanded "> < a href ="usage.html "> < strong aria-hidden ="true "> 3.</ strong > Usage</ a > </ li > < li class ="chapter-item expanded "> < a href ="license.html "> < strong aria-hidden ="true "> 4.</ strong > License</ a > </ li > </ ol >
92
92
</ div >
93
93
< div id ="sidebar-resize-handle " class ="sidebar-resize-handle ">
94
94
< div class ="sidebar-resize-indicator "> </ div >
@@ -176,8 +176,8 @@ <h1 class="menu-title">Mchdir Documentation</h1>
176
176
< h1 id ="introduction "> < a class ="header " href ="#introduction "> Introduction</ a > </ h1 >
177
177
< p > < code > mchdir</ code > is a command-line tool written in Rust that allows you to create a new
178
178
directory and immediately change into it. It includes shell integration that
179
- defines an < code > mcd </ code > command in your shell, simplifying directory creation and
180
- navigation.</ p >
179
+ defines an a couple of helpful commands in your shell, simplifying directory
180
+ creation and navigation.</ p >
181
181
< h2 id ="description "> < a class ="header " href ="#description "> Description</ a > </ h2 >
182
182
< p > < code > mchdir</ code > provides a convenient way to create a new directory and change into it
183
183
in a single command. While similar functionality can be achieved with a shell
@@ -201,12 +201,17 @@ <h3 id="why-the-need-for-shell-integration-too"><a class="header" href="#why-the
201
201
of the shell that runs it without shell integration.</ p >
202
202
< h2 id ="features "> < a class ="header " href ="#features "> Features</ a > </ h2 >
203
203
< ul >
204
- < li > Create a new directory and change into it with a single command.</ li >
204
+ < li > Create a new directory and change into it with a single command ( < code > mcd </ code > ) .</ li >
205
205
< li > Create a new directory in the system temporary directory and change into it
206
206
with the < code > mct</ code > command.</ li >
207
- < li > Shell integration for bash, zsh, and fish shells.</ li >
207
+ < li > Change back to the last directory with the < code > mcl</ code > command.</ li >
208
+ < li > Shell integration for bash, zsh, and fish shells as first-class citizens,
209
+ though it should work in most POSIX-compliant shells too.</ li >
208
210
< li > Supports automatic installation of shell integration scripts.</ li >
209
211
</ ul >
212
+ < h2 id ="contributing "> < a class ="header " href ="#contributing "> Contributing</ a > </ h2 >
213
+ < p > Contributions are welcome! Please open an issue or submit a pull request on
214
+ GitHub.</ p >
210
215
211
216
</ main >
212
217
0 commit comments