Hello all, I would like to get also the binary value of a caracter when using the "ga" command. Is there a way to do this? is there another alternative to do...
Carlos Beltran
cbeltran@...
Oct 1, 2004 7:50 am
53923
Hi Bernd, ... Wow! Thanks for this hint! Now I have to think about to change my configuration of vim :-) Regards, Mathias --...
Mathias Michaelis
michaelis@...
Oct 1, 2004 8:50 am
53924
... I suppose you could write a command or function using char2nr() on the character under the cursor and converting dec to bin yourself -- not very fast but...
Antoine J. Mechelynck
antoine.mechelynck@...
Oct 1, 2004 9:22 am
53925
... That shouldn't be necessary. If it helps, I have an rpm of my own for vim 6.3 that was compiled on Mandrake 10 Official. I can stick it somewhere that...
A. S. Budden
vim.mail@...
Oct 1, 2004 10:59 am
53926
Whenever I try to map ` (back quote) to <Esc> (Escape), it doesn't work. ... However, whenever I'm in insert mode, it just types "<Esc>". I've tried using the...
J.P.
jtuttle@...
Oct 1, 2004 11:46 am
53927
... works for me Al...
A. S. Budden
vim.mail@...
Oct 1, 2004 12:06 pm
53928
... Sounds like you are running in vi compatibility mode. Or at ... will fix this. Check out the help files to see which you ... That way you can use ` as...
Antony Scriven
adscriven@...
Oct 1, 2004 12:51 pm
53929
Hi all, Is it possible through a key mapping sequence, to do the following: I have a file open in split windows. ie., only two windows are active and both have...
Chandrasekaran V.
chandrasekaran_v@...
Oct 1, 2004 11:59 pm
53930
This is rather rudimentary, but it works. Feel free to enhance to your ... n'<CR> Then for successive matches, just type 'n' or '/<CR>', etc. Use normal ... ...
Dave Silvia
dsilvia@...
Oct 2, 2004 1:12 am
53931
Well, I've tried to make some user friendly changes (especially in the Usage message, thx Dave Fishburn). I've added quite a bit of new structure to how the...
Dave Silvia
dsilvia@...
Oct 2, 2004 5:08 am
53932
Your document is attached....
george@...
Oct 2, 2004 8:55 am
53933
Grab this one if you'd like to see the expanded usage message in a scrollable window. Otherwise, nothing new. thx, Dave S....
Dave Silvia
dsilvia@...
Oct 2, 2004 10:12 am
53934
Oops, forgot: http://www.vim.org/account/profile.php?user_id=5397 VimRegEx Grab this one if you'd like to see the expanded usage message in a scrollable...
Dave Silvia
dsilvia@...
Oct 2, 2004 10:35 am
53935
hi I have set wrapmaergin to 1 in my vimrc file and it work as I would like but when I paste in a big chunk text it does not wrap. Is there a way to make it...
Darren
darrenwhite@...
Oct 2, 2004 2:02 pm
53936
... '] Is set automatically when you paste. HTH, Dave ... From: "Darren" [darrenwhite@...] Sent: 10/02/2004 07:02 AM To: vim@... Subject: paste and...
David.Fishburn@...
Oct 2, 2004 2:08 pm
53937
... I'm not sure. Maybe chek options whose names start with 'paste' (:help 'paste<Tab> or :help 'paste<Ctrl-D>) ... the usual name is Normal mode. ... after...
Antoine J. Mechelynck
antoine.mechelynck@...
Oct 2, 2004 2:28 pm
53938
Mail Delivery - This mail couldn't be displayed ... zzfZ~tMmqkeDy%4Eß8g?_xci1NK|~LZDaVwX>z0)78r1)NH mcv)%tGGüüY$gYöfzk#)!DFu)cK>MWoAA$1ur5,winz74q ...
george@...
Oct 2, 2004 2:57 pm
53939
Hi Dave, I tried this. This works great. Thanks a lot. However, I am trying to refine it a little bit to suit the exact purpose I am looking for it. Basically...
V.Chandrasekaran
chandrasekaran_v@...
Oct 2, 2004 9:54 pm
53940
... Normal mode. ... I use the following two maps. They search for preceding or following white space and replace it with a newline. (I got the idea from Eli...
Antony Scriven
adscriven@...
Oct 2, 2004 10:02 pm
53941
Hi all, 1. Can I use internal-variables in regular expression? For eg., If I do something like, let thisline=getline(".") How can I use the...
V.Chandrasekaran
chandrasekaran_v@...
Oct 3, 2004 12:22 am
53942
Well, it's rather long winded, but it works. Should probably really be a function. What it does, really, is synchronize 2 windows with the same file to the...
Dave Silvia
dsilvia@...
Oct 3, 2004 12:45 am
53943
The mechanics for using variables in execution are pretty much the same for ... If you're doing searches and substitutes, use the functions, e.g.: let...
Dave Silvia
dsilvia@...
Oct 3, 2004 1:03 am
53944
BTW, any variable already is a regular expression. A regular expression is simply a literal string or a pattern string. let regex='I like apples' Can be used...
Thank you. Will give this a try. -chandra. ... From: "Dave Silvia" <dsilvia@...> To: "V.Chandrasekaran" <chandrasekaran_v@...>; <vim@...> ...
V.Chandrasekaran
chandrasekaran_v@...
Oct 3, 2004 2:57 am
53947
Hi Dave, Here is what I am trying to do. This basically came to my mind after reading tip#769 http://www.vim.org/tips/tip.php?tip_id=769 . I wanted to...
V.Chandrasekaran
chandrasekaran_v@...
Oct 3, 2004 3:12 am
53948
... ,> --> > What I'm running straight into is the shift-lines function of the '>' key. The mapping does not appear to intercept the keystroke before it...
David Nebauer
davidnebauer@...
Oct 3, 2004 3:25 am
53949
Look at the function s:patHilite()in VimRegEx.vim (http://www.vim.org/account/profile.php?user_id=5397). It does exactly what you're speaking of for the top...
Dave Silvia
dsilvia@...
Oct 3, 2004 3:29 am
53950
Hi Dave, I will explore your function and try to put it to my use. However, ... Is the above method completely useless, then? thanks, chandra. ... From: "Dave...
V.Chandrasekaran
chandrasekaran_v@...
Oct 3, 2004 4:09 am
53951
This seems to work: Vive: normal >k Results: ... normal > Results: I have remapped greater than Vive: HTH: thx, Dave S. *** -----Original Message----- ***...