Hello all! I've recently installed kubuntu linux over vmware, then I used the adept package manager to install the following packages (6.4-006) vim vim-gtk ...
Giovanni Funchal
gafunchal@...
Oct 1, 2006 11:58 am
74057
On Sat, Sep 30, 2006 at 03:25:08PM EDT, samitj wrote: [..] ... I find that rather than making extensive changes to my .vimrc, a useful approach is...
cga2000
cga2000@...
Oct 1, 2006 12:11 pm
74058
... Mapping Ctrl-C works only when Vim is waiting for input (see "help map_CTRL-C"); however, your brute-force method is in error. You should have tried ... ...
A.J.Mechelynck
antoine.mechelynck@...
Oct 1, 2006 1:11 pm
74059
... [..] ... Misuse of "v" was the issue and explains why Vim thus behaves. Since "v" is "per character" visual mode .. vjj does not make much sense in the...
cga2000
cga2000@...
Oct 1, 2006 1:12 pm
74060
... There must be something wrong with your build. When Vim leaves Insert mode, going back to Normal mode, it always disables the input method. Thus your...
Bram Moolenaar
Bram@...
Oct 1, 2006 1:13 pm
74061
Hi, is it possible to map the sequence of <C-C><C-F>b to anything (and how?)? I tried as a first brute-force experiment noremap <C-C><C-F>b echo "works" But...
Meino Christian Cramer
Meino.Cramer@...
Oct 1, 2006 1:17 pm
74062
... Rather than adding them to your vimrc, you may want to build a colorscheme (a script concerned only with color settings and living in the colors/ ...
A.J.Mechelynck
antoine.mechelynck@...
Oct 1, 2006 1:33 pm
74063
cga2000 wrote: [...] ... [...] Windows, even more than "modern" Unixes (those with X11), is GUI-oriented. On Windows, IIUC, only old Dos hands like me,...
A.J.Mechelynck
antoine.mechelynck@...
Oct 1, 2006 1:35 pm
74064
From: "A.J.Mechelynck" <antoine.mechelynck@...> Subject: Re: Mapping of keysequences... Date: Sun, 01 Oct 2006 15:09:17 +0200 ... Hi Tony, ah...oh! Yes!...
Meino Christian Cramer
Meino.Cramer@...
Oct 1, 2006 1:37 pm
74065
... No, this will not work (vim's builtin echo translates Esc to ^[). Try something like: autocmd VimLeave * silent !echo -e '\e]12;green\007' (untested) Yakov...
Yakov Lerner
iler.ml@...
Oct 1, 2006 1:49 pm
74066
... Yes :-). The simpler way is to map it to single key :-), like <F2> :-) I'd imagine that typing 11 keys doesn't feel the right typing-to-effect ratio. Yakov...
Yakov Lerner
iler.ml@...
Oct 1, 2006 1:54 pm
74067
... Check your mappings. Open a latex file, then do both ... Check the left-hand side of mappings for accented letters. I suspect you might have mappings for...
Hello, Interesting concept. The most difficult thing are Vim habits. Seeing spelling error in line before I tend to make <Esc>k than <S-Tab> which is obviously...
Mikolaj Machowski
mikmach@...
Oct 1, 2006 3:10 pm
74070
From: Mikolaj Machowski <mikmach@...> Subject: Re: Mapping of keysequences... Date: Sun, 1 Oct 2006 15:09:56 +0200 ... Hmmmppff....I got a problem here... ...
Meino Christian Cramer
Meino.Cramer@...
Oct 1, 2006 3:22 pm
74071
... Very interesting. Thanks cga...
cga2000
cga2000@...
Oct 1, 2006 3:48 pm
74072
... [..] ... This would reload the original colorscheme .. doing a "reset defaults" or rather original color scheme, if there is one .. so-to-speak .. right? I...
cga2000
cga2000@...
Oct 1, 2006 4:00 pm
74073
Say I have a file with two lines line abcd line efgh Normally when I press right arrow (or k), the cursor moves one character right! However if my cursor is at...
Kamaraju Kusumanchi
kamaraju@...
Oct 1, 2006 4:01 pm
74074
... If you want to print it in the buffer it should be:: noremap <C-C><C-F>b iecho "works" If you want to echo it in command line:: noremap <C-C><C-F>b :echo...
Mikolaj Machowski
mikmach@...
Oct 1, 2006 4:23 pm
74075
... [...] ... No, because the variable colors_name remembers the name of your colorscheme, and ":syntax on" uses that variable to load the correct colorscheme....
A.J.Mechelynck
antoine.mechelynck@...
Oct 1, 2006 4:33 pm
74076
... See :help 'whichwrap' ... Yakov...
Yakov Lerner
iler.ml@...
Oct 1, 2006 4:37 pm
74077
... If you are already in Insert mode, the right-hand side of the mapping is used as if you had typed it. To insert left-brace backslash bee eff space ...
A.J.Mechelynck
antoine.mechelynck@...
Oct 1, 2006 4:42 pm
74078
... Did you try all existing colorshemes before trying to come up with your own ? I can recommend two things with regard to this: 1)...
Yakov Lerner
iler.ml@...
Oct 1, 2006 4:47 pm
74079
Hello. I try to install vim7.0 But I can't install vim with GUI. It seems that configure automatically looks for a GUI, but it always tells no in my system. ...
Zheng Da
zhengda1936@...
Oct 1, 2006 4:47 pm
74080
... I think you need gtk2-devel (Debian probably calls it gtk2-dev) Yakov...
Yakov Lerner
iler.ml@...
Oct 1, 2006 4:49 pm
74081
A.J.Mechelynck
antoine.mechelynck@...
Oct 1, 2006 4:51 pm
74082
... That INSTALL file must be really old, it says that GTK2 doesn't work -- it has worked since at least at some patchlevel of 6.3. Check the output of...
A.J.Mechelynck
antoine.mechelynck@...
Oct 1, 2006 5:00 pm
74083
... I am already putting this segment in much larger map that does other things on "a contents. However, the way I currently do it has a disadvantage that the...
Osho GG
oshogg@...
Oct 1, 2006 5:06 pm
74084
Why not use apt-get install vim-full? In Debian Etch and Sid there is this deb package, and it works well on my machine. ... -- novorus@......
moonykily
novorus@...
Oct 1, 2006 5:09 pm
74085
From: "A.J.Mechelynck" <antoine.mechelynck@...> Subject: Re: Mapping of keysequences... Date: Sun, 01 Oct 2006 18:40:47 +0200 ... Hi Tony ! nice to read...