Configure Mercurial to complete the command in the Windows console

Is there a way to configure Mercurial to complete the command when working with the console on Windows?

I would like to have something similar to git bash , but for mercurial

+4
source share
1 answer

The people at # mercurial tell me that there is nothing like this for cmd.exe . But I found a repository with Mercurial tab completion support for PowerShell .

An alternative is to run Cygwin and use the Bash or Zsh shell. Then you can use regular Bash completion and Zsh completion scripts.

+5
source

Source: https://habr.com/ru/post/1391519/


All Articles