File tree 2 files changed +17
-0
lines changed
2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,12 @@ __Flags__
101
101
| :--- | :---- | :---------- |
102
102
| ` --help ` | | help for daytona |
103
103
104
+ <Aside type = " note" >
105
+ If using bash shell environment, make sure you have bash-completion installed in order to get full autocompletion functionality.
106
+ Linux Installation: ``` sudo apt-get install bash-completion ```
107
+ macOS Installation: ``` brew install bash-completion ```
108
+ </Aside >
109
+
104
110
## daytona build
105
111
106
112
Manage builds
Original file line number Diff line number Diff line change @@ -35,6 +35,13 @@ This reference does not apply to the \`daytona\` command when run inside of a Wo
35
35
// content to appear below the commands outline
36
36
const append = `` ;
37
37
38
+ const notes = {
39
+ "daytona autocomplete" : `\n<Aside type="note">
40
+ If using bash shell environment, make sure you have bash-completion installed in order to get full autocompletion functionality.
41
+ Linux Installation: \`\`\`sudo apt-get install bash-completion\`\`\`
42
+ macOS Installation: \`\`\`brew install bash-completion\`\`\`
43
+ </Aside>` } ;
44
+
38
45
async function fetchRawDocs ( ref ) {
39
46
const url = "https://api.github.com/repos/daytonaio/daytona/contents/hack/docs" ;
40
47
const request = await fetch ( `${ url } ?ref=${ ref } ` ) ;
@@ -101,6 +108,10 @@ function yamlToMarkdown(files) {
101
108
}
102
109
}
103
110
111
+ if ( notes [ rawDoc . name ] ) {
112
+ output += notes [ rawDoc . name ] ;
113
+ }
114
+
104
115
output += "\n" ;
105
116
106
117
return output ;
You can’t perform that action at this time.
0 commit comments