Skip to content

Commit 4344aef

Browse files
authored
feat: add bash autocompletion instructions (#182)
Signed-off-by: lbrecic <[email protected]>
1 parent f9b4779 commit 4344aef

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

src/content/docs/tools/cli.mdx

+6
Original file line numberDiff line numberDiff 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

106112
Manage builds

tools/update-cli-reference.js

+11
Original file line numberDiff line numberDiff 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
3636
const 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+
3845
async 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;

0 commit comments

Comments
 (0)