Re: special keymap depending on language

2012-11-26 Thread Tony Mechelynck
On 26/11/12 22:40, Steve wrote: Hi, I write in French and in English. In French, before a question mark, one needs a non-breakable space but not in English. Somebody on this list nicely suggested to create a file in ~/.vim/keymap/touchesfrmail.vim containing: loadkeymap << « » ? ? ! ! : : ; ;

special keymap depending on language

2012-11-26 Thread Steve
Hi, I write in French and in English. In French, before a question mark, one needs a non-breakable space but not in English. Somebody on this list nicely suggested to create a file in ~/.vim/keymap/touchesfrmail.vim containing: loadkeymap << « >> » ? ? ! ! : : ; ; (Sometimes, I don't want the tr

Re: Running Vim inside Emacs

2012-11-26 Thread James Freer
On Sun, Nov 25, 2012 at 11:33 PM, Sergio Ruiz wrote: > A member of this group wants to run Vim on a Window, and SBCL on another > Window. He already tried ConqueTerm, Gnu Screen and Konsole, but all these > solutions have serious drawbacks. I was in the same situation a few months > ago. I need

Re: Vim vs GVim

2012-11-26 Thread BPJ
On 2012-11-20 04:53, Heldraug wrote: Just for the sake of it. Which flavor of Vim do you guys use? I which operative system? Prefered colorscheme? Reason? I use terminal Vim only with a bunch of things loaded from pathogen. I keep my personal configuration in Github so it's straightforward to

Re: set runtimepath

2012-11-26 Thread Gary Johnson
On 2012-11-26, Marc Weber wrote: > Excerpts from Christian Brabandt's message of Mon Nov 26 10:14:00 +0100 2012: > > Can you be more specific? What is the bug? > > I've documented it now: (874e52), text: > > 50. VAM works around deficiencies in runtimepath *VAM-fixes-rtp* > > create thes

Re: Is Vundle dead?

2012-11-26 Thread Charles Campbell
Marc Weber wrote: (snip) More than that you don't want to load all plugins always. Eg plugins such as DrawIt may be useful once a month. What do do? Using VAM you just do: :ActivateAddon DrawIt at runtime and you're done. Marc Weber (snip) Of course, DrawIt uses vim's autoload method, and so

Re: how to handle 'statusline' content with a variable ?

2012-11-26 Thread Ben Fritz
On Monday, November 26, 2012 5:14:02 AM UTC-6, bilibop project wrote: > > autocmd BufEnter,TabEnter,WinEnter * if &filetype=="help" || > &filetype=="netrw" || &filetype=="nerdtree" || &filetype=="conque_term" || > &filetype=="qf" | setlocal statusline& | else | exe "setlocal statusline=" . >

Re: how to handle 'statusline' content with a variable ?

2012-11-26 Thread bilibop project
message d'origine De: Marcin Szamotulski En apparence venant de: vim_use+bncbd3o3bgawubbb3flzwcqkgqehca4...@googlegroups.com A: vim_use@googlegroups.com Sujet: Re: how to handle 'statusline' content with a variable ? Date: Mon, 26 Nov 2012 11:43:36 + > On 12:13 Mon 26 Nov

Re: different colorschemes for different filetypes in the split window

2012-11-26 Thread Ben Fritz
On Sunday, November 25, 2012 8:00:21 PM UTC-6, cyboman wrote: > Does anybody know if there is a way to set different colorschemes for > different filetypes in the split window? > > Any help is appreciated. There is not. Vim globally applies :highlight commands which are used by colorschemes to

Re: how to handle 'statusline' content with a variable ?

2012-11-26 Thread Marcin Szamotulski
On 12:13 Mon 26 Nov , bilibop project wrote: > Hi, > > In my .vimrc, I conditionally set the statusline, and store it into a variable > to use this variable later in autocommands, like this: > > == BEGIN > = > [...] > se

how to handle 'statusline' content with a variable ?

2012-11-26 Thread bilibop project
Hi, In my .vimrc, I conditionally set the statusline, and store it into a variable to use this variable later in autocommands, like this: == BEGIN = [...] set statusline& if &filetype!="help" && &filetype!="netrw" && &filety

Re: set runtimepath

2012-11-26 Thread Marc Weber
Excerpts from Christian Brabandt's message of Mon Nov 26 10:14:00 +0100 2012: > Can you be more specific? What is the bug? I've documented it now: (874e52), text: 50. VAM works around deficiencies in runtimepath *VAM-fixes-rtp* create these directories: ~/.vim/after/plugin/1.vim ~/.vim/

Re: set runtimepath

2012-11-26 Thread Christian Brabandt
On Mon, November 26, 2012 04:37, Marc Weber wrote: > Yes, but some special features are broken, such as loading > ${RTP_ITEM}/after/plugin/*.vim files or its missing ftdetect files or > such. > Its not that likely that you hit them, but some plugins use those files. > Yes - this could eventually be

Re: Running Vim inside Emacs

2012-11-26 Thread Rosangela Medeiros da Silva
> The scheme is quite simple. Use Slime to call SBCL as inferior lisp. To make > things easier, ask Emacs to open a nonexistent Lisp file: > > ~$ emacs garbage.lisp & > > Emacs will open a blank file, with Slime and all the rest of Lisp magics. > Choose the option 'Lisp/Run inferior Lisp'. Thi