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...
53923
Mathias Michaelis
michaelis@...
Oct 1, 2004 8:50 am
Hi Bernd, ... Wow! Thanks for this hint! Now I have to think about to change my configuration of vim :-) Regards, Mathias --...
53924
Antoine J. Mechelynck
antoine.mechelynck@...
Oct 1, 2004 9:22 am
... 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...
53925
A. S. Budden
vim.mail@...
Oct 1, 2004 10:59 am
... 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...
53926
J.P.
jtuttle@...
Oct 1, 2004 11:46 am
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...
53927
A. S. Budden
vim.mail@...
Oct 1, 2004 12:06 pm
... works for me Al...
53928
Antony Scriven
adscriven@...
Oct 1, 2004 12:51 pm
... 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...
53929
Chandrasekaran V.
chandrasekaran_v@...
Oct 1, 2004 11:59 pm
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...
53930
Dave Silvia
dsilvia@...
Oct 2, 2004 1:12 am
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 ... ...
53931
Dave Silvia
dsilvia@...
Oct 2, 2004 5:08 am
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...
53932
george@...
Oct 2, 2004 8:55 am
Your document is attached....
53933
Dave Silvia
dsilvia@...
Oct 2, 2004 10:12 am
Grab this one if you'd like to see the expanded usage message in a scrollable window. Otherwise, nothing new. thx, Dave S....
53934
Dave Silvia
dsilvia@...
Oct 2, 2004 10:35 am
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...
53935
Darren
darrenwhite@...
Oct 2, 2004 2:02 pm
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...
53936
David.Fishburn@...
Oct 2, 2004 2:08 pm
... '] Is set automatically when you paste. HTH, Dave ... From: "Darren" [darrenwhite@...] Sent: 10/02/2004 07:02 AM To: vim@... Subject: paste and...
53937
Antoine J. Mechelynck
antoine.mechelynck@...
Oct 2, 2004 2:28 pm
... I'm not sure. Maybe chek options whose names start with 'paste39; (:help 'paste<Tab> or :help 'paste<Ctrl-D>) ... the usual name is Normal mode. ... after...
53938
george@...
Oct 2, 2004 2:57 pm
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 ...
53939
V.Chandrasekaran
chandrasekaran_v@...
Oct 2, 2004 9:54 pm
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...
53940
Antony Scriven
adscriven@...
Oct 2, 2004 10:02 pm
... 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...
53941
V.Chandrasekaran
chandrasekaran_v@...
Oct 3, 2004 12:22 am
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...
53942
Dave Silvia
dsilvia@...
Oct 3, 2004 12:45 am
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...
53943
Dave Silvia
dsilvia@...
Oct 3, 2004 1:03 am
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...
53944
Dave Silvia
dsilvia@...
Oct 3, 2004 1:10 am
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@...> ...
53947
V.Chandrasekaran
chandrasekaran_v@...
Oct 3, 2004 3:12 am
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...
53948
David Nebauer
davidnebauer@...
Oct 3, 2004 3:25 am
... ,> --> > 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...
53949
Dave Silvia
dsilvia@...
Oct 3, 2004 3:29 am
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...
53950
V.Chandrasekaran
chandrasekaran_v@...
Oct 3, 2004 4:09 am
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...
53951
Dave Silvia
dsilvia@...
Oct 3, 2004 4:15 am
This seems to work: Vive: normal >k Results: ... normal > Results: I have remapped greater than Vive: HTH: thx, Dave S. *** -----Original Message----- ***...