Hello I'm using Vim 6.1 on RedHat Linux 9 When I copy block of text by mouse (mouse buffer is used) from one virtual console to vim o another virtual console,...
43764
Lukas Ruf
ruf@...
Oct 1, 2003 10:12 am
... have you read about ':help pastetoggle39; and ':help paste' ? wbr, Lukas -- Lukas Ruf | Wanna know anything about raw | <http://www.lpr.ch> | IP?...
43765
Andrei A. Voropaev
avorop@...
Oct 1, 2003 10:18 am
... Try before pasting ... and after pasting ... Though if original text didn't contain spaces at the beginning of each line then no formatting should have...
43766
Vijay Kumar R Zanvar
vijoeyz@...
Oct 1, 2003 10:43 am
Greetings, I often mistype 'unsigned39; as 'unsinged39;. Is there any way to exchange 'g' and 'n' without erasing the whole word? Thanks. -- I never knew: RFC...
43767
Artem B. Bityuckiy
mail_lists@...
Oct 1, 2003 10:47 am
Thanks to Lukas, Andrei. I've realized how to handle this issue. I've map <F12> to paste using :set pastetogle=<F12> command. Unfortunately, when 'paste39; is...
43768
Riehm Stephen
s.riehm@...
Oct 1, 2003 10:48 am
move to the 'n' (ie: with the command 'fn') and then type xp (delete the n and paste it after the g) Or you might like to add something like this to your...
43769
Pathak Animesh Kumar-...
animesh@...
Oct 1, 2003 10:49 am
put your cursor at 'n' and then, in command mode, type xp. regards,...
43770
Vijay Kumar R Zanvar
vijoeyz@...
Oct 1, 2003 10:56 am
... n ... Oh thanks! It works. I also found out 'Fn'. -- Vijay Kumar R Zanvar...
43771
Antoine J. Mechelynck
antoine.mechelynck@...
Oct 1, 2003 10:56 am
... xp see :help characterwise-register HTH, Tony....
43772
Saar Machtinger
SAARMA@...
Oct 1, 2003 10:57 am
I wonder, should we try to create a FAQ or not? It seems that there are many recurring questions, and as we know most of the answers have already been answered...
43773
Thomas Köhler
jean-luc@...
Oct 1, 2003 11:05 am
... First, use this for future mistypings: iab unsinged unsigned Then, use the xp command to exchange two characters for older mistakes: unsinged ^ Cursor...
43774
maoz
maoz@...
Oct 1, 2003 11:06 am
Hi, I dont know about replacing the 'g' and 'n', anyway why would you want to do that. Add this to your .vimrc, inoreabbrev unsinged unsigned ... Subject:...
43775
Riehm Stephen
s.riehm@...
Oct 1, 2003 11:20 am
a faq is a great idea, but if you go to google and type 'vim faq' you'll see that there are already a whole bunch of them. Maybe it would be better for someone...
43776
Charles E. Campbell
cec@...
Oct 1, 2003 1:27 pm
... FYI, http://vim.sourceforge.net/tips/tip.php?tip_id=329 includes a tip for swapping adjacent letters (as well as adjacent words). I think the abbreviation...
43777
Tim Chase
gumnos@...
Oct 1, 2003 1:52 pm
Reading under my ":he linewise", it states that "Generally, motions that move between lines affect lines (are linewise), and motions that move within a line...
43778
Riehm Stephen
s.riehm@...
Oct 1, 2003 1:59 pm
I do something similar all the time - you can use visual mode to force the way vim treats the range. To take your example: <outer> <inner> <nestedinner>delete...
43779
John Aldridge
jaldri1@...
Oct 1, 2003 2:06 pm
... The most common questions are already answered in the help files. Also, I believe that the on-line tips at www.vim.org were already created -- and quite...
43780
Antoine J. Mechelynck
antoine.mechelynck@...
Oct 1, 2003 2:17 pm
... What about the FAQ already maintained as text by Yegappan Lakshmann and available as HTML from http://vimdoc.sourceforge.net/vimfaq.html ? Regards, Tony....
43781
Thomas Köhler
jean-luc@...
Oct 1, 2003 2:18 pm
Hi, Tim Chase wrote [2003/10/01]: [...] ... Not being able to help with your original problem (I have no such list, sorry), I have a suggestion for your...
43782
Russell Shaw
rjshaw@...
Oct 1, 2003 2:21 pm
... I found the problem is online help. There's too many files to read off the screen. Things become clearer if you have a decent printer to print them out....
43783
Tim Chase
gumnos@...
Oct 1, 2003 2:30 pm
... I still regularly refer to the collaberative effort between Bram and Oleg Raisky, their "Vim 5.6 Reference Guide" (I've got a version 0.7, which I'm not ...
43784
Tim Hammerquist
tim+vim@...
Oct 1, 2003 2:30 pm
... The abbrev solution is also a good suggestion, but in less frequent cases... Place cursor over 'n' in misspelled word. In command mode: xp x -- deletes...
43785
Tim Chase
gumnos@...
Oct 1, 2003 2:36 pm
... linewise. Thanks for the suggestion...I've done this, but have fallen out of the habit, because a remote machine I regularly use (over which I have no ...
43786
Riehm Stephen
s.riehm@...
Oct 1, 2003 2:42 pm
Then you might like to try slightly different patterns... the question will then be "what39;s easier for you? regexes or simple commands and cleaning up the...
43787
owen beresford
owencanprogram@...
Oct 1, 2003 2:56 pm
On Wed, 1 Oct 2003 16:09:43 +0530, "Vijay Kumar R Zanvar" ... [trimmed footer] try following in your .vimrc abbr unsinged unsigned (this is safe as I can't...
43788
Stefano Zacchiroli
zack@...
Oct 1, 2003 3:23 pm
Hi all, I need to define a function that acts in two different ways depending on the current vim mode (actually "visual" or <anything_else>). The function will...
43789
Dan Sharp
dwsharp@...
Oct 1, 2003 3:39 pm
... I am guessing from the AVG signature that you are on Windows. In that case, take a look at http://insenvim.freeservers.com/ or look for 'Intellisense39; on...
43790
Dan Sharp
dwsharp@...
Oct 1, 2003 3:40 pm
... Depending on the language, the syntax highlighting for very long lines can really slow down the editing speed. Do a :syntax off and then retry your steps....
43791
Antony Scriven
ads1@...
Oct 1, 2003 3:44 pm
... Maybe :help o_V will be of use? I'm assuming that that will still be in your stripped-down Vim. Antony...
43792
Scott LaBounty
slabounty@...
Oct 1, 2003 4:27 pm
I have a file that looks like: SI: data SI: data SI: data SK: data SK: data SK: data SK: data SI: data SK: data etc. I'm trying to get a regular expression...