Re: Selecting font size

2007-06-05 Thread Tobia
to the picture.) Tobia

Re: ex editor

2007-06-05 Thread Tobia
expand on what :open does and what it's useful for? :help :open tells me nothing at all :-( Tobia

Re: Open all folds in the current fold?

2007-06-04 Thread Tobia
it to some zX combination that's currently unused (or redundant) Tobia

Edit output of external command

2007-06-04 Thread Tobia
Is there a better (faster?) way to edit the output of an external prog in a new tab or window, than to filter the new buffer through it? :tabnew|%!svn diff Tobia

Re: OT: Vi in a browser...

2007-06-01 Thread Tobia
to use middle-click to paste (on X11.) Tobia

Re: collapsing single lines of html tag attributes via plugin??

2007-06-01 Thread Tobia
line wrap: :set nowrap You can map a function key to toggling line wrap: :map F9 :set wrap!CR Type that literally, with and everything, or put it into ~/.vimrc HTH Tobia

Re: copying text char-by-char from the line above line..

2007-05-31 Thread Tobia
:-). It's easier to remember if you already know what C-Y and C-E do in normal made (they scroll the page) Tobia

Re: Vim over cifs share

2007-05-30 Thread Tobia
not an answer to what you asked, but I've usually been able to fix this issue by: - ntpdate pool.ntp.org (or equivalent time sync command) on the client - ntpdate pool.ntp.org (or equivalent time sync command) on the server - umount and mount the share Tobia

Re: bullet points and paragraph indenting

2007-05-29 Thread Tobia
starts at beginning of line set autoindent Tobia

Re: Why bottom-posting is prefered on Vim Mainling List?

2007-05-29 Thread Tobia
(gq} or visual+gq as you like best) while you're formatting your email works quite well. Tobia

Re: Remapping mouse-wheel

2007-05-24 Thread Tobia
simultaneously? Then put this in your .vimrc: set scrollbind HTH Tobia

Vim to Vi (Was: weird defaults in Feisty)

2007-05-22 Thread Tobia
! The point is: I don't consider my learning path in any way peculiar, and if Vim had suddenly reverted to Vi while I was in phases 1 to 3, I would have looked at my computer with a blank, baffled expression on my face. Tobia

Right click = toggle fold

2007-05-22 Thread Tobia
with automatic syntax- or indent-folding. Scroll, click (expand), read, click (collapse), scroll some more... Tobia

Javascript syntax folding

2007-05-20 Thread Tobia
file.js What am I doing wrong? Tobia -- «A one-time pad isn't a cryptosystem: it's a state of mind.» —Marcus Ranum

Re: Newbee question:Why don't I have the syntax highlighting when editing files like *.sh *.xml,etc?

2007-04-03 Thread Tobia
line probably means Big version with GTK2 GUI. Features included (+) or not (-): That would explain the problem. To the original poster: try adding the following line to /etc/vim/gvimrc.local (create it if needed) source /etc/vim/vimrc Tobia

Re: repeat replace many time on each line

2007-04-02 Thread Tobia
Bob Hiestand wrote: Tobia wrote: Arnaud Bourree wrote: I've Xml document with attribute likes: foo=00 12 AF I want to replace with: foo=0x00 0x12 0xAF this works: %s/\%(\%(foo=\\)\@=\%([0-9A-F]\{2\}\s\)*\)\@=\([0-9A-F]\{2\}\)/0x\1/g In using :s with the /g flag, I take

Re: mapping for jumping to a tag

2007-04-01 Thread Tobia
Dimitar wrote: * Tobia [EMAIL PROTECTED] [070331 20:35]: :map C-J C-] works here. Did you try this in a help file? :help then go to a tag and press c-j Yes, I tried it in a help window, both in console Vim and in GVim, before posting. I don't know where else I can find tags! Try

Re: Monospaced font problem

2007-04-01 Thread Tobia
of the font file and to install/uninstall the font through Windows's Control Panel. That is: make a copy of the font file; set the flag on it; uninstall the currently installed font; install the modified version; profit. Tobia [1] http://developer.apple.com/textfonts/TTRefMan/RM06/Chap6.html http

Re: invoking yanked register into colon command

2007-03-31 Thread Tobia
delete or yank Ctrl-R *...the current selection (X11 only) Ctrl-R +...the clipboard contents Ctrl-R x...the contents of register x Ctrl-R Ctrl-W ...the current word under the cursor See :help c_CTRL-R Tobia

Re: delete all but first occurence of a pattern

2007-03-31 Thread Tobia
://www.vim.org/scripts/script.php?script_id=1397 Tobia

Re: mapping for jumping to a tag

2007-03-31 Thread Tobia
Dimitar wrote: I also tried to map c-j to c-] but it also didn't work. Uh? :map C-J C-] works here. Tobia

Re: Help on search and replace

2007-03-29 Thread Tobia
-ahead/behind assertions to be very powerful: :%s/\v(\[[^]]*)@=\s//g ( \[ [^]]* )@= \s I also happen to like \v, but that's just syntactic sugar! Tobia

Re: Customizing vim: How to change the char before commands

2007-03-26 Thread Tobia
: in some places, such as in Hit ENTER or type command to continue prompts. Tobia

Re: case-sens in completion on Mac OS X

2007-03-25 Thread Tobia
. If you only use console Vim, you might have better luck with the one provided by Darwinports or Fink. Otherwise you might need to recompile Vim following the steps of the macvim.org guys, or ask for their help. Tobia

Re: How to turn a q recording into a map?

2007-03-24 Thread Tobia
- yank it (yy) - close the commandline window (C-C C-C) - paste it Tobia

Re: hosting wiki tips

2007-03-24 Thread Tobia
. If there's a prominent spam problem, we could always restrict write access to registered mailing list members. Tobia

Re: specific lines SR question

2007-03-24 Thread Tobia
it as needed :-) Tobia

Re: Undo Levels Reset

2007-03-23 Thread Tobia
when I close Vim, when I reopen the file with :e, or when Vim alerts me that the file has been changed and reloads it. The latter can be dangerous if you're not careful, and I'd appreciate any tips to work around it. Tobia

Re: Count characters

2007-03-23 Thread Tobia
with Latex syntax, but if you wanted to exclude \this[kind of thing] as well, it wouldn't be hard: :%s/\v(\\\w*(\[[^]]*)?)@!\w//gn ( \\ \w* ( \[ [^]]* )? )@! \w Tobia

Re: highlighting weird characters...

2007-03-20 Thread Tobia
as /[^ -~^I] with a blue ^I. This has the added benefit of hitting n to get to the next one. Tobia

Close tab / delete buffer?

2007-03-20 Thread Tobia
or when I see too many tabs on the screen. Is this usage pattern suboptimal? Tobia PS I find these handy: map F11 gT map F12 gt