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
Add the following to `~/.config/fish/config.fish`.
149
-
150
-
```fish
151
-
mdsf completions fish | source
152
-
```
153
-
154
-
#### PowerShell
155
-
156
-
Add the following to your PowerShell configuration (Can be found by running `$PROFILE`).
157
-
158
-
```powershell
159
-
Invoke-Expression (&mdsf completions powershell)
160
-
```
161
-
162
-
#### Elvish
163
-
164
-
Add the following to `~/.elvish/rc.elv`.
165
-
166
-
```elvish
167
-
eval (mdsf completions elvish)
168
-
```
169
-
170
109
## Configuration
171
110
172
111
The default configuration of `mdsf` aims to as sane as possible. For that reason the default formatter for each language is the one most people have installed.
@@ -379,6 +318,67 @@ mdsf init
379
318
380
319
<!-- END_SECTION:supported-tools -->
381
320
321
+
## Shell completions
322
+
323
+
Shell completions can be generated using `mdsf completions <SHELL>`.
0 commit comments