Sorry. The previous email was sent to keith's email address instead of the list's address. ... From: Kamaraju Kusumanchi <kamaraju@...> Date: Oct 31,...
63138
Robert Cussons
r.cussons@...
Nov 1, 2005 10:27 am
Hi all, don't know how difficult or possible this is to do, but here goes! I sometimes want to write a large amount of test in capitals so I turn on Caps Lock,...
63139
Dominic Evans
oldmanuk@...
Nov 1, 2005 10:44 am
I don't think there is a way to do that. However you could avoid CAPS LOCK all together... I don't know if there is already a mark for where insert mode was ...
63140
Moshe Kaminsky
kaminsky@...
Nov 1, 2005 10:55 am
Hi, ... Maybe instead of pressing Caps, you should :imap any non capital letter to a capital one. Then, when you are done, unmap it. All this should be done by...
63141
Vigil
vim5632@...
Nov 1, 2005 11:01 am
How can I disable all scripts, such as those in /usr/share/vim/vim63/indent/, /syntax/, etc, so that only commands in my ~/.vimrc are used? Assume I don't have...
63142
Anders Thøgersen
anderslt@...
Nov 1, 2005 11:14 am
... A start for this is using set noloadplugins Then only pugins you specifically want loaded are loaded. /Anders...
63143
Tim Chase
vim@...
Nov 1, 2005 1:47 pm
... [snip] ... Well, there's also visually highlighting the text and pressing "U" to force the selected text to be highlighted. Additionally, if it's all a...
63144
A. J. Mechelynck
antoine.mechelynck@...
Nov 1, 2005 1:48 pm
... also - ":filetype off" which will suppress filetype detection, thus you won't have syntax-related highlighting, filetype-dependent indenting, and ...
63145
Charles E. Campbell, ...
drchip@...
Nov 1, 2005 2:07 pm
... ...snip The astronaut colorscheme, http://vim.sourceforge.net/scripts/script.php?script_id=122, is designed to work with console vim in an xterm; ie. it is...
63146
A. J. Mechelynck
antoine.mechelynck@...
Nov 1, 2005 2:46 pm
... [...] ... In any case, Steve, if you don't find a colorscheme exactly to your liking, you can always "roll your own", and in that case you can write for...
63147
John Love-Jensen
eljay@...
Nov 1, 2005 3:44 pm
Hi Rob, I usually disable Caps Lock altogether, in the OS. (Windows, OS X, Amiga OS.) Or remap Caps Lock to Control. Or use a Happy Hacking Keyboard Lite 2...
63148
Dominic Evans
oldmanuk@...
Nov 1, 2005 4:17 pm
... Ah `[ and `]. However, the latter one seems to be non-inclusive and miss off the last typed character. The following worked: `[gU'. Cheers, Dom...
63149
Vigil
vim5632@...
Nov 1, 2005 5:57 pm
Thanks, both. -- ....
63150
Hari Krishna Dara
hari_vim@...
Nov 1, 2005 7:13 pm
... put ... Yep, that is what came into my mind too. You should really use a "soft" version of capslock, implemented in Vim. Something like to start with: ...
63151
Ernest Obusek
eobusek@...
Nov 1, 2005 9:33 pm
I use :make to run a build script and then show the errors. The cursor always goes to the location of the first error, but the error message does not show on...
63152
Stefan Karlsson
stefan.74@...
Nov 1, 2005 9:39 pm
... No, I don't know why. However, if you do :cc you will see it (i.e. you don't have to switch to the next and then back again). -- Stefan Karlsson |...
63153
Stanislav Yaglo
stasvim@...
Nov 2, 2005 3:01 am
Hi, there is the question: There is a string such as "some text *|Text 1|* some other *|Text 2|* and so on" in a text. I need to highlight only *|Text 1|* and ...
63154
Peter Hodge
toomuchphp-vim@...
Nov 2, 2005 3:35 am
Try having the wildcard in the centre of the pattern match as few chars as ... HTH, Peter ... ____________________________________________________ Do you...
63155
Stanislav Yaglo
stasvim@...
Nov 2, 2005 4:03 am
Thanks Peter, it does what I need....
63156
Mathias Michaelis
michaelis@...
Nov 2, 2005 8:06 am
Hi John ... If yes, you would have found it already, I think: http://groups.yahoo.com/group/vim/message/57693 The question should be: Is a timer planned in...
63157
Mathias Michaelis
michaelis@...
Nov 2, 2005 8:10 am
Hi Bertram ... For vim 6.4 on Windows XP: No. The first map just worked fine for me. Best regards Mathias...
63158
Mathias Michaelis
michaelis@...
Nov 2, 2005 8:26 am
Jason ... Probably no, but maybe this workaround helps you: http://groups.yahoo.com/group/vim/message/57763 Best regards Mathias...
63159
Giorgos Gaganis
G.Gaganis@...
Nov 2, 2005 10:20 am
Hello I would like to sort a few lines in a buffer. I have looked at tip #588 but didn't help me much because I couldn't find the scripts it refers to. Any...
63160
Chris Allen
c.d.allen@...
Nov 2, 2005 10:35 am
... You can do this, if you're on something Unix-like, with the :! (filter) command. Select your lines visually then type ... If you want to give Vim7 a try...
63161
hermitte@...
Nov 2, 2005 10:37 am
Hello, ... In system_utils (<http://hermitte.free.fr/vim/ressources/vimfiles/plugin/>), you will found code, for :Sort, posted by Piet Delport on this list a...
63162
sanjeev.g.sapre@...
Nov 2, 2005 10:41 am
List, I have some data extraction program which creates comma separated flat files. Each type of file has some fixed length of a line. Before we can pass on ...
63163
Tim Chase
vim@...
Nov 2, 2005 12:03 pm
... It will work on Windows/Dos as well, as there's a "sort" command there as well...a tad more braindead, as it doesn't allow for all the nice parameters you...
63164
Tim Chase
vim@...
Nov 2, 2005 12:14 pm
... Well, a couple ideas stand out to me. Depending on your file size (in lines), it could be as simple as ... and then scrolling down, watching the right...
63165
Jürgen Krämer
jkr@...
Nov 2, 2005 12:39 pm
Hi, ... the following mapping will search for the next line that has a different length than the current line: nnoremap \d...
63166
John Love-Jensen
eljay@...
Nov 2, 2005 12:40 pm
Hi Sanjeev, This is what I did... ... Maybe that would work for you. Note: somewhat destructive. Save the file before doing this, and restore it afterwards. ...