Hi all, I have two issues which I need help with: 1) Is there any way to do to cursor position what scrollbind does to scroll position? I want to jump to the...
Richard Hartmann
richih.mailinglist@...
Oct 1, 2007 10:19 am
83376
Hi, ... I don't know a solution for this, ... ... but you can use do and dp to copy the differences from and to the other buffer, respectively. Regards, ...
Jürgen Krämer
jottkaerr@...
Oct 1, 2007 11:07 am
83377
... While I don't have an answer for this, as sometimes vim seems to track cursor location, and sometimes it doesn't. But yes, this would be useful to know...
Tim Chase
vim@...
Oct 1, 2007 11:15 am
83378
Thanks! --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit...
rob
apollo730730@...
Oct 1, 2007 2:33 pm
83379
Hi all, Doesn't anyone know if Vim is compliance with Windows Vista OS or not. Is anyone have problem with Vim on Vista? Thanks Joyce Lin Pioneer Natural...
Lin, Joyce
Joyce.Lin@...
Oct 1, 2007 2:35 pm
83380
Thanks to the both of you :) --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information,...
Richard Hartmann
richih.mailinglist@...
Oct 1, 2007 2:46 pm
83381
... Vim sometimes has problems on paths containing spaces, but they can be worked around. When I was on Windows (XP), I had [g]vim installed in (at the time) ...
Tony Mechelynck
antoine.mechelynck@...
Oct 1, 2007 3:06 pm
83382
Thanks to you all. Joyce ... From: vim_use@googlegroups.com [mailto:vim_use@googlegroups.com] On Behalf Of Tony Mechelynck Sent: Monday, October 01, 2007 10:05...
Lin, Joyce
Joyce.Lin@...
Oct 1, 2007 3:13 pm
83383
... Hi Bram, I'm sorry do disappoint you. I have now included patches up to 124, made distclean and configured --enable-multibyte. So far no change, the first...
Axel Kielhorn
A.Kielhorn@...
Oct 1, 2007 3:39 pm
83384
There is a known issue with things working on Vista having to do the _access() function. For example, the application gcc uses _access() to find other tools...
Suresh Govindachar
sgovindachar@...
Oct 1, 2007 3:43 pm
83385
... You should also know about Bram's popular suggested "Eat Char" solution that allows you to use <Space> as usual for expanding the abbreviation and still...
Hari Krishna Dara
hari.vim@...
Oct 1, 2007 4:00 pm
83386
Harrison, George (STEM) <> wrote on September 28, 2007 17:23 PM: Thanks everyone, all those suggestions worked, and even more importantly pointed me to ":.",...
Harrison, George (STEM)
George.Harrison@...
Oct 1, 2007 4:35 pm
83387
cscope is better that ctags for large enough project. you can see all usages of function in one second ( after some grep and clean trash ). result will be...
Ni
golubev.nikolay@...
Oct 1, 2007 4:58 pm
83388
I did this before but do not remember how. What is frustrating is I cannot google it out :( Anybody tell me how to do this? ...
xz
zhang.xi.cn@...
Oct 1, 2007 7:38 pm
83389
... Look into using vis.vim; with it, you can visual-block select (:help visual-block) ... and the results will be restricted to the selected column. You can...
Charles E Campbell Jr
drchip@...
Oct 1, 2007 7:46 pm
83390
... Can't you use something like a lockfile + your setup ? ... It seems that vim needs to be connected to a terminal. GNUscreen could help here, but I guess...
A.Politz
politza@...
Oct 1, 2007 8:16 pm
83391
On Oct 1, 2:47 pm, Charles E Campbell Jr <drc...@...> ... Thanks for the reply. But.... no internal way? ...
xz
zhang.xi.cn@...
Oct 1, 2007 8:16 pm
83392
... Guess why the plugin was written! Chip Campbell --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use"...
Charles E Campbell Jr
drchip@...
Oct 1, 2007 8:24 pm
83393
... [snipped long answer from Dr. Chip] ... I think Dr. Chip may have given you the $5 answer to what may have been a $0.05 question...Vim supports basic...
Tim Chase
vim@...
Oct 1, 2007 8:32 pm
83394
... Well, I'm afraid that I can't reproduce the problem now. You can try using ":ls!" and ":args" to find out if Vim did at least get the file name. ... ...
Bram Moolenaar
Bram@...
Oct 1, 2007 8:44 pm
83395
... True -- there are some things you can do, such as replace a column with a character, yank it, put it, and apply a change (this operation is not ...
Charles E Campbell Jr
drchip@...
Oct 1, 2007 8:50 pm
83396
My most used feature of FireFox is the ability to quickly and easily change the fontsize of the text I am reading. So you can hit CTRL+ and CTRL- repeatedly to...
David Fishburn
dfishburn.vim@...
Oct 1, 2007 9:01 pm
83397
... then syntax/tex.vim distributed with vim will enable syntax-based folding. Regards, Chip Campbell --~--~---------~--~----~------------~-------~--~----~ You...
Charles E Campbell Jr
drchip@...
Oct 1, 2007 9:23 pm
83398
... There's also: http://vim.sourceforge.net/scripts/script.php?script_id=1453 http://mysite.verizon.net/astronaut/vim/index.html#CECSCOPE It doesn't use maps;...
Charles E Campbell Jr
drchip@...
Oct 1, 2007 9:29 pm
83399
... Little more progress on this, looks like I am running into a Vim bug. This works: echo substitute(&guifont, '\%(.*:h\)\(\d\+\)\%(.*\)', '\=submatch(0)',...
David Fishburn
dfishburn.vim@...
Oct 1, 2007 10:45 pm
83400
... A substitution is either an expression which starts with '\=', or it is a string, which can contain special sub-replace patterns like '\1'. You can't mix...
A.Politz
politza@...
Oct 1, 2007 10:53 pm
83401
... This is not a bug. For expressions to work, the replacement pattern should start with "\=". If you want to use "\=" you have to use string constants (with...
Hari Krishna Dara
hari.vim@...
Oct 1, 2007 10:55 pm
83402
... Ahh, thank you Hari. That makes sense. So I have this working this way (thanks to your suggestion): nnoremap <C-Up> :silent! let &guifont =...
David Fishburn
dfishburn.vim@...
Oct 1, 2007 11:13 pm
83403
... http://vim.wikia.com/wiki/Increase/decrease_fontsize_using_a_map_ala_FireFox My only issue with it currently is the dreaded "Hit ENTER or type command to...
David Fishburn
dfishburn.vim@...
Oct 2, 2007 12:04 am
83404
... The time has arrived! I completely rewrote the Outlook AddIn. I have added a Vim Toolbar with New, Reply, Reply To All and Forward. If you open an email,...