Mail Archives: cygwin/2001/02/15/23:21:27
The first patch suggests a .inputrc entry to allow pasting from the
clipboard using the Insert key. I first saw this in
http://sources.redhat.com/ml/cygwin/2000-01/msg00411.html. It also
fixes a couple of spelling errors.
The second patch suggests .inputrc entries for Insert and Delete. The
setup*sgml files seem pretty out of data. I also don't know where
they might be published, so I don't know how useful the patch is.
Jon
$ diff -u how-using.texinfo.orig how-using.texinfo
--- how-using.texinfo.orig Fri Feb 16 01:13:48 2001
+++ how-using.texinfo Fri Feb 16 01:38:18 2001
@@ -63,7 +63,7 @@
/usr/bin/cygwin.bat
@end example
Note that bash interprets the backslash '\' as an escape character, so
-you must type it twice in the bash shell if you want it to be recognised
+you must type it twice in the bash shell if you want it to be recognized
as such.
@subsection Why doesn't bash read my .bashrc file on startup?
@@ -232,7 +232,7 @@
(That's for russian locale.) You should comment that line if you want
your keys working properly. Of course, this will deprive you of your
local alphabet keyboard support, so you should think about
-another localizer. exUSSR users are of course knowledgable of Keyrus
+another localizer. exUSSR users are of course knowledgeable of Keyrus
localizer, and it might work for other locales too, since it has keyboard
layout editor. But it has russian messages and documentation ;-(
Reference URL is http://www.hnet.ru/software/contrib/Utils/KeyRus/
@@ -302,7 +302,7 @@
to the posix path, because different posix paths, through different
mount points, could map to the same Windows directory. This matters
because different mount points may be binmode or textmode, so the
-behaviour of Cygwin apps will vary depending on the posix path used to
+behavior of Cygwin apps will vary depending on the posix path used to
get there.
You can avoid the ambiguity of Windows paths, and avoid typing
@@ -342,6 +342,12 @@
Under Windows 9x, open the properties dialog of the console window.
Select the Misc tab. Uncheck Fast Pasting. Check QuickEdit.
+
+You can also bind the insert key to paste from the clipboard by adding
+the following line to your .inputrc file:
+@example
+"\e[2~": paste-from-clipboard
+@end example
@subsection What does "mount failed: Device or resource busy" mean?
$ diff -u setup2.sgml.orig setup2.sgml
--- setup2.sgml.orig Fri Feb 16 03:44:06 2001
+++ setup2.sgml Fri Feb 16 03:56:42 2001
@@ -268,11 +268,16 @@
set output-meta on
# Ignore case while completing
set completion-ignore-case on
+# Bind Insert and Delete
+"\e[2~": paste-from-clipboard
+"\e[3~": delete-char
</screen>
The first three commands allow bash to display 8-bit characters,
-useful for languages with accented characters. The last line makes
+useful for languages with accented characters. The next command makes
filename completion case insensitive, which can be convenient in a
-Windows environment.
+Windows environment. The last two lines bind the Insert key to insert
+text from the clipboard and the Delete key to delete the character
+under the cursor.
</para>
</sect1>
--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple
- Raw text -