Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | win32: implement ioctl | Ron Yorston | 2012-04-23 | 1 | -1/+1 |
| | |||||
* | Add code to find console dimensions in WIN32 | Ron Yorston | 2012-02-20 | 1 | -0/+17 |
| | |||||
* | Fix off-by-one error in cursor positioning | Ron Yorston | 2012-02-17 | 1 | -1/+1 |
| | |||||
* | Fix crash in Windows 7 ANSI emulation | Ron Yorston | 2012-02-07 | 1 | -2/+3 |
| | |||||
* | Work around a regression in Windows 7, causing erase_in_line() to crash ↵ | Johannes Schindelin | 2012-02-07 | 1 | -1/+2 |
| | | | | | | | | | | | | | sometimes The function FillConsoleOutputCharacterA() was pretty content in XP to take a NULL pointer if we did not want to store the number of written columns. In Windows 7, it crashes, but only when called from within Git Bash, not from within cmd.exe. Go figure. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Steffen Prohaska <prohaska@zib.de> Signed-off-by: Junio C Hamano <gitster@pobox.com> | ||||
* | win32: winansi: implement \033[%u;%uH | Nguyễn Thái Ngọc Duy | 2010-09-14 | 1 | -0/+7 |
| | |||||
* | win32: winansi: implement \033[H (no param) | Nguyễn Thái Ngọc Duy | 2010-09-14 | 1 | -0/+16 |
| | |||||
* | win32: winansi: implement \033[%uD | Nguyễn Thái Ngọc Duy | 2010-09-14 | 1 | -0/+15 |
| | |||||
* | win32: winansi: implement \033[J | Nguyễn Thái Ngọc Duy | 2010-09-14 | 1 | -0/+21 |
| | |||||
* | win32: Support certain ANSI sequences on cmd.exe | Nguyễn Thái Ngọc Duy | 2010-09-10 | 1 | -0/+358 |
Support sequences are mostly color ones. This was extracted from commit e56b799d6ad8afba4168fffa7218d44c041a72d2 in Git repository. Changes from original version: > diff --git a/home/pclouds/w/git/compat/winansi.c b/tmp/winansi2.c > index 44dc293..e2e7010 100644 > --- a/home/pclouds/w/git/compat/winansi.c > +++ b/tmp/winansi2.c > @@ -2,8 +2,9 @@ > * Copyright 2008 Peter Harris <git@peter.is-a-geek.org> > */ > > +#include "libbb.h" > #include <windows.h> > -#include "../git-compat-util.h" > +#undef PACKED > > /* > Functions to be wrapped: |