@@ -128,7 +128,6 @@ struct Complete {
128
128
" diff " : " Compare files line by line. " ,
129
129
" dig " : " DNS lookup utility. " ,
130
130
" du " : " Disk usage " ,
131
- " ed " : " Line-oriented text editor " ,
132
131
" echo " : " Write arguments to the standard output. " ,
133
132
" egrep " : " Search for a pattern using extended regex. " , // https://www.computerhope.com/unix/uegrep.htm
134
133
" env " : " Set environment and execute command, or print environment. " , // fish
@@ -142,6 +141,7 @@ struct Complete {
142
141
" help " : " Prints all commands. 🧐 " ,
143
142
" history " : " Use -c option to clear history. 🙈 " ,
144
143
" host " : " DNS lookup utility. " , // fish
144
+ " less " : " Pager. " ,
145
145
" link " : " Make links. " , // fish
146
146
// "ln": "", // TODO
147
147
" ls " : " List files and directories " ,
@@ -184,10 +184,10 @@ struct Complete {
184
184
" unlink " : " Remove directory entries. " , // fish
185
185
// // @"unsetenv": @"", // TODO
186
186
" uptime " : " Show how long system has been running. " , // fish
187
+ " vim " : " Vi IMproved, a programmer's text editor " ,
187
188
" wc " : " Words and lines counter. " ,
188
189
" whoami " : " Display effective user id. " , // fish
189
190
" whois " : " Internet domain name and network number directory service. " , // fish
190
-
191
191
" open " : " open url of file (Experimental). 📤 " ,
192
192
" link-files " : " link folders from Files.app (Experimental). " ,
193
193
" build " : " Access to Blink dev machines. ⚒ " ,
@@ -201,10 +201,10 @@ struct Complete {
201
201
private static func _completionKind( _ cmd: String ) -> Kind {
202
202
switch cmd {
203
203
case " " : return . command
204
- case " ssh " , " ssh2 " , " mosh " : return . blinkHost
204
+ case " ssh " , " ssh2 " , " mosh " , " mosh1 " : return . blinkHost
205
205
case " ping " : return . host
206
206
case " ls " : return . directory
207
- case " file " : return . file
207
+ case " file " , " vim " : return . file
208
208
case " geo " : return . blinkGeo
209
209
case " build " : return . blinkBuild
210
210
case " facecam " : return . facecam
0 commit comments