-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
"jobs" in GIT bash shell not working properly #1083
Comments
jobs
in GIT bash shell not working properly
It is unfortunately correct that the Git Bash cannot exercise job control over |
I've stumbled upon this issue as well. For me it's quite sever and it should be in high priority. It so happened to me that I was in the middle of a large merge conflict reaolution of a huge file and I just wanted to run a command in the shell. When I ran IMO, even if we can't solve this issue instantly, we should set a default configuration for vimdiff that will disable |
@doronbehar any help toward what you describe will be very welcome. |
Since This project is new to me and it's quite huge, would you be kind enough and guide me please to where |
@doronbehar certainly. The I have no idea where The So a PR to https://github.com/git-for-windows/build-extra changing the |
I've been thinking a lot about this issue and I think it's related to another issue Linux users experience as well. I can generalize the problem by asserting there is no way for text editors in general to know whether or not they were invoked by git or not. It could be an option to just add something like this to vimrc: " Explaining comment
nnoremap <C-Z> <NOP> But we don't want to disable What do you think? |
Added PR to |
Pressing Ctrl+Z in Git Bash [no longer kills Win32 processes (e.g. `git.exe`) anymore](git-for-windows/git#1083), because POSIX job control is only available with MSYS2 processes. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Setup
defaults?
to the issue you're seeing?
The git bash shell installed on my machine is based on MINGW64
Details
**Bash Shell **
Minimal, Complete, and Verifiable example
this will help us understand the issue.
I am running webpack with watch option in the shell, and CTRL-Z to let it run in background. Then typed
jobs
command, and it list thewebpack
job. As long as this job is not terminated, it should be able to be brought backWaited for few seconds and typed
jobs
again, but this time didn't list anything while the command is running actively in the bg. And i couldn't usefg
to bring it back. Also it doesn't exist in the result ofps
URL to that repository to help us with testing?
Not seems like related to repo
The text was updated successfully, but these errors were encountered: