This repository was archived by the owner on Jul 16, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed
Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,12 @@ __Flags__
101101| :--- | :---- | :---------- |
102102| ` --help ` | | help for daytona |
103103
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+
104110## daytona build
105111
106112Manage 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
3535// content to appear below the commands outline
3636const append = `` ;
3737
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+
3845async function fetchRawDocs ( ref ) {
3946 const url = "https://api.github.com/repos/daytonaio/daytona/contents/hack/docs" ;
4047 const request = await fetch ( `${ url } ?ref=${ ref } ` ) ;
@@ -101,6 +108,10 @@ function yamlToMarkdown(files) {
101108 }
102109 }
103110
111+ if ( notes [ rawDoc . name ] ) {
112+ output += notes [ rawDoc . name ] ;
113+ }
114+
104115 output += "\n" ;
105116
106117 return output ;
You can’t perform that action at this time.
0 commit comments