Questions tagged [mintty]

Mintty is a terminal emulator for Cygwin and MSYS, it is based on the code from PuTTY 0.60.

Project page: http://code.google.com/p/mintty/

In Cygwin, Mintty is installed as the default terminal by Cygwin's setup.exe. In MSYS, the mintty package can be installed with the command mingw-get install mintty. Alternatively, binaries for Cygwin 1.7, 1.5 and MSYS can be found on the downloads page.

Features include:

  • Xterm-compatible terminal emulation.
  • Native Windows user interface with a simple options dialog.
  • Easy copy & paste.
  • Drag & drop of text, files and folders.
  • Ability to open files and URLs with Ctrl+click.
  • Comprehensive character encoding support, including UTF-8.
  • Wide character display and Windows IME support.
  • Window transparency, including glass effect on Vista and 7.
  • 256 colours.
  • Fullscreen mode.
  • Options stored in a text file. No registry entries.
  • Small program size and quick scrolling.

Mintty works on all Windows versions from Windows 2000 onwards. Similarly to other Cygwin/MSYS terminals based on pseudo terminal ("pty") devices, however, mintty is not a full replacement for the Windows Command Prompt. While native console programs with simple text output usually work fine, interactive programs often have problems, although sometimes there are workarounds.

The Cygwin package ships with a manual page that can be accessed with man mintty. A PDF version of the manual is available from the downloads page. Invoking mintty with the --help option shows a summary of available command line options. Keycodes, control sequences and some random tips can be found on the wiki.

Please report bugs or suggest enhancements via the issue tracker. Vote for any issues you'd particularly like to see addressed by starring them. The discussion group for all things mintty is mintty-discuss. General Cygwin questions should be sent to the Cygwin mailing list.

Mintty is based on code from PuTTY 0.60 by Simon Tatham and team. The program icon comes from KDE's Konsole. Mintty ties directly into Cygwin/MSYS and leaves out PuTTY's networking functionality, which is provided by packages such as openssh and inetutils instead. A number of PuTTY issues have been addressed.

150 questions
0
votes
2 answers

How do I prevent strange escape chars from appearing on prompt

I am using Cygwin on windows 7 mintty 2.3.6 (x86_64-pc-cygwin) And randomly a [28~ will appear on my prompt line. Sometimes it even appears while I am in the middle of typing a command. And often it appears even when the terminal window doesn't have…
jschank
  • 554
  • 1
  • 5
  • 16
0
votes
1 answer

How to open cygwin & execute bash in Eclipse?

I am trying to build my custom-commands in Eclipse. This is Eclipse plugin which I am using: https://marketplace.eclipse.org/content/startexplorer It looks like this (link to image): Custom commands in Eclipse I need eclipse variables in custom…
rdbeni0
  • 152
  • 3
  • 8
0
votes
1 answer

Ctrl-L does not clear the screen in cygwin/bash/mintty

I am using bash and mintty. Ctrl-L does not clear the screen like it should: 0920:~$ ^L -bash: $'\f': command not found I get the same error if I've ssh-ed into a linux box via my cygwin mintty.
PortMan
  • 4,205
  • 9
  • 35
  • 61
0
votes
1 answer

Launch C program in Cygwin Environment through command line

I installed Cygwin to compile and run C programs. I'm trying to write my own shell program using Notepad++ as my editor. When I execute the compiled .exe file from the command line (using nppexec) it runs outside the Cygwin environment. The…
George
  • 2,820
  • 4
  • 29
  • 56
0
votes
0 answers

SBT REPL loops really long input strings

I am running sbt 0.13.7 on mintty 1.1.3. When I put really long string in sbt REPL it just loops the input as follows: sbt> aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbb And if I put more chars, I get (every new…
Alexander Myltsev
  • 459
  • 1
  • 3
  • 13
0
votes
1 answer

Mintty opens painfully slowly while on Domain

I installed Mintty fresh this morning on a new laptop that connects to a work network over a VPN. I noticed that when I am connected to the VPN, mintty takes ages to open. After some research, I found that I could start mintty with strace to see…
Jason V
  • 408
  • 1
  • 3
  • 7
0
votes
1 answer

Pig 0.12.0 over Hadoop 2.3.0 on Windows 2008 r2 x64

I've build Hadoop 2.3.0 Src successfully on windows 2008 r2 x64. The NameNode, DataNode, ResourceManager and NodeManager all work fine now. I recompiled the Pig-0.12.0 Src using Apache Ant with ant clean jar-withouthadoop -Dhadoopversion=23…
user3377246
  • 21
  • 1
  • 2
0
votes
0 answers

How would I close the connection to the irc server?

I have made an IRC bot running on the MinTTY terminal emu and it is programmed in php. How would I close the connection between the server and bot? I've done it on my web version but this is a little different on MinTTY... Could I just use…
0
votes
1 answer

Cygwin terminal, mintty missing

I have Cygwin terminal and am trying to set it up on my PC. I run windows 8 and when I try to open Cygwin terminal I receive attached pop up, "searching for mintty, cannot locate". If anyone knows how to fix respond. ![enter image description…
Engineer
  • 119
  • 3
0
votes
1 answer

Alt-backspace working on Cygwin/mintty?

I am not quite sure what happened ... alt-backspace won't backward-kill-word any more in my Cygwin install. It looks like I did an update on 7/17/2013, not sure what was in the update, I usually just pull whatever's the latest version of the modules…
sameers
  • 4,855
  • 3
  • 35
  • 44
0
votes
1 answer

Create a new key mapping for mintty

Mintty is a awsome terminal I used in window. Its full-screen feature make it an ideal solution for using Vim. It can also be set to be transparent mode. I want to add a shortcut to toggle between transparent mode, is there any one could give a…
alexzzp
  • 419
  • 2
  • 6
  • 15
0
votes
1 answer

nant hanging when run in cygwin

I updated to cygwin 1.7.15 this afternoon and went to run the same nant script I ran successfully this morning, except that nant now hangs - no output is ever shown. I've verified nant (0.91.3881.0 alpha2) still runs in a windows cmd prompt and I've…
AlG
  • 14,697
  • 4
  • 41
  • 54
-1
votes
1 answer

How can I detect focus lost in mintty under Cygwin?

Does mintty under Cygwin in any way support the events of losing and gaining focus? I'm looking for the equivalent of WM_KILLFOCUS from Windows or autocmd FocusLost * call ... from gvim, but under Cygwin within the mintty terminal.
Irfy
  • 9,323
  • 1
  • 45
  • 67
-1
votes
1 answer

Git Bash issue when 'Entering interactive session'. (Windows 10)

SSH used to work nicely with Git Bash before. Don't know what happened recently. SSH version on CMD: C:\Users\ my-user>ssh -V OpenSSH_for_Windows_8.1p1, LibreSSL 3.0.2 Debug/errors On CMD: C:\Users\ my-user>ssh -V OpenSSH_for_Windows_8.1p1,…
swapblue
  • 1
  • 3
-1
votes
1 answer

docker-compose exec workspace bash - DOES NOT OPEN ANYTHING

I'm doing a class project, I have to follow some steps and there's one that is not working. Here's the problem. I have to use: docker-compose exec workspace bash To open a directory and be able to write there: /var/www$ composer install In Docker…
virxu
  • 23
  • 1
  • 4
1 2 3
9
10