-
-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support cmder #144
Comments
Thanks for the suggestion. I'd like to close this issue in favor for #114, which makes the context menu custimizable. |
I finally started to work on #114 and set up a new repository to consolidate repository actions from the community. Would you like to help out adding Cmder to the json file over there? |
@awaescher Fantastic! Menu and esp. shortcut customisation is the last missing piece to make RepoZ perfect! I will gladly help you put up a template for Cmder. The main issue when I see your template is that you seem to always give a full path to the executable. {
"name": "Open in Cmder",
"executables": ['cmder.exe'],
"arguments": '/start "{Repository.SafePath}"',
"keys": "Ctrl+C",
"active": "true"
} If the unknown path location is a problem:
|
That was fast, wow. Yeah, PATH tools are a bit of a problem by now as I have to check whether the executables exist or not before building the menu. This does not work with commands from the PATH. I might need to overthink that behavior. I'll add Cmder to the sample configuration, thanks again. |
Oh, the shortcut is the same as "Copy". I'd like to change that for the sample. |
Sure, no problem. Maybe Ctrl+R for "run"? or Ctrl+T for "terminal"? |
Maybe when the executable is just a filename, probe the system with the command |
@awaescher Can I suggest a small tweak to the Cmder invocation? Cmder is a tabbed console, the command I gave you above would create one new window at every invocation, regardless whether Cmder is already open or not. I think a better default behaviour is to add a new tab to the existing window if it's already open, which can be done with the
|
Thank you very much for this information, I just commited this to RepoZ-RepositoryActions. RepoZ is not ready to use these definitions yet but I'll be soon 😅 |
Cmder is a great console emulator for Windows.
I use it for everything git-related so I'd love if I could replace the "Open in Windows Powershell" entry by "Open in Cmder" (or at least add that option to the list)
The text was updated successfully, but these errors were encountered: