Skip to main content
Commonmark migration
Source Link

This can easily be solved by looking into the Arch Wiki:

It is useful to have the auto-complete feature (pressing the Tab key twice on the keyboard) after you type some command like sudo.

 

To do this, add line(s) in this format to your ~/.bashrc file:

 
complete -cf your_command
 

For example, to enable auto-complete after sudo and man:

 
complete -cf sudo
complete -cf man

This can easily be solved by looking into the Arch Wiki:

It is useful to have the auto-complete feature (pressing the Tab key twice on the keyboard) after you type some command like sudo.

 

To do this, add line(s) in this format to your ~/.bashrc file:

 
complete -cf your_command
 

For example, to enable auto-complete after sudo and man:

 
complete -cf sudo
complete -cf man

This can easily be solved by looking into the Arch Wiki:

It is useful to have the auto-complete feature (pressing the Tab key twice on the keyboard) after you type some command like sudo.

To do this, add line(s) in this format to your ~/.bashrc file:

complete -cf your_command

For example, to enable auto-complete after sudo and man:

complete -cf sudo
complete -cf man
Fixed formatting.
Source Link

This can easily be solved by looking into the Arch Wiki:

It is useful to have the auto-complete feature (pressing the Tab key twice on the keyboard) after you type some command like sudosudo.

To do this, add a line(s) in this format to your ~/.bashrc~/.bashrc file:

complete -cf your_command

complete -cf your_command

For example, to enable auto-complete after sudosudo and manman:

complete -cf sudo complete -cf man

complete -cf sudo
complete -cf man

This can easily be solved by looking into the Arch Wiki:

It is useful to have the auto-complete feature (pressing Tab key twice on the keyboard) after you type some command like sudo.

To do this add a line in this format to your ~/.bashrc file:

complete -cf your_command

For example, to enable auto-complete after sudo and man:

complete -cf sudo complete -cf man

This can easily be solved by looking into the Arch Wiki:

It is useful to have the auto-complete feature (pressing the Tab key twice on the keyboard) after you type some command like sudo.

To do this, add line(s) in this format to your ~/.bashrc file:

complete -cf your_command

For example, to enable auto-complete after sudo and man:

complete -cf sudo
complete -cf man
Source Link
Wieland
  • 6.7k
  • 3
  • 31
  • 33

This can easily be solved by looking into the Arch Wiki:

It is useful to have the auto-complete feature (pressing Tab key twice on the keyboard) after you type some command like sudo.

To do this add a line in this format to your ~/.bashrc file:

complete -cf your_command

For example, to enable auto-complete after sudo and man:

complete -cf sudo complete -cf man