vim9script autocommand not recalled more than one time ??

2022-10-15 Thread Nicolas
.cpp :call that.TestImportedFunc() This is the vim9 func: export def TestImportedFunc(): void echomsg 'Imported Func is well called and tested.' enddef Don't understand why only on first buffer as cpp, the echomsg of this func so this func is called: just one time ? Thank you for hel

Re: vim9script autocommand not recalled more than one time ??

2022-10-18 Thread Nicolas
hat.TestExportedFunc() Thank you Doug Nicolas Le mardi 18 octobre 2022 à 14:38:07 UTC+2, Doug Kearns a écrit : > On Sun, 16 Oct 2022 at 08:17, Nicolas wrote: > > > > Hi, > > > > Using some stuff in helper and calling them through autocommand defined > in _vimrc, &

Share variables between Two vim9 def functions

2022-10-18 Thread Nicolas
needs variable computed of this triggered func, second one which occurs and called on mapped double click mouse event . Thank you for your help I can share the entire vimscript if needed. Nicolas -- -- You received this message from the "vim_use" maillist. Do not top-post! Type you

Re: Share variables between Two vim9 def functions

2022-10-28 Thread Nicolas
OK export Var and import from files that i know reduce variable consumption scope. Entiendo. Thank you a lot Bram, Courage. Nicolas Le vendredi 28 octobre 2022 à 23:44:16 UTC+2, Bram Moolenaar a écrit : > > > Vim9script introduces the fact of having to use a global to pa

Embedding Lua in vim9script breaks syntax highlight

2022-10-29 Thread Nicolas
Hi, it Seems that the lua print code line above, when embedded in lua region code breaks vim9 syntax highlight. How to fix it ? Thank you Nicolas [image: Capture d’écran 2022-10-30 063445.png] [image: Capture d’écran 2022-10-30 063530.png] -- -- You received this message from the "vi

Re: Embedding Lua in vim9script breaks syntax highlight

2022-10-30 Thread Nicolas
Thank you a lot for advise Owajigbanam :) Nicolas. Le dim. 30 oct. 2022 à 19:23, Owajigbanam Ogbuluijah a écrit : > Hi Nicolas, > > I'd recommend having Lua code in a Lua file, then using the Lua region in > Vim9script to import the Lua file — if you must. > > A better re

Re: vim airline too consumption starting time

2022-10-30 Thread Nicolas
ine/issues/1779 Thank you for your help Nicolas Le dimanche 30 octobre 2022 à 20:34:50 UTC+1, mstep@googlemail.com a écrit : > Bonsoir Nicolas, > > how do you start vimprofiler, please. I have a starting time over 20 > seconds of VimR, after restarting my macOS. Second time it i

Re: vim airline too consumption starting time

2022-10-30 Thread Nicolas
Exact lines in $MYVIMRC profile start $tmp/vimprofiler.log profile file * profile func * Le dimanche 30 octobre 2022 à 20:56:33 UTC+1, Nicolas a écrit : > Hi Marek, > > Just as documented by vim's help in it's simple way: > >

vim9 script folding brackets near deffunc break syntax

2022-10-30 Thread Nicolas
k you Nicolas[image: Capture d’écran 2022-10-31 050949.png][image: Capture d’écran 2022-10-31 051025.png] -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.o

pb with nnoremap an imported vim9 defnot loaded

2022-10-30 Thread Nicolas
Hi, Using this def func to blink searched word I mapped it in $MYVIMRC as this but it seems that at vim startup, the nnoremap is not defined, no call occurs. Thankyou for help Nicolas *$MYVIMRC* import autoload './vimfiles/plugged/foobar.vim' as thatHelp nnoremap n n thatHelp

Re: pb with nnoremap an imported vim9 defnot loaded

2022-10-31 Thread Nicolas
t; > As an aside, the function you defined is technically correct, though > inefficient in a few things, but that's not likely to be the cause of your > woes. > > On Mon, Oct 31, 2022 at 1:43 AM Nicolas wrote: > >> Hi, >> >> >> Using this def func to b

Re: vim airline too consumption starting time

2022-11-02 Thread Nicolas
I will. Thank you Christian. Le mer. 2 nov. 2022 à 11:59, Christian Brabandt a écrit : > [re-sending, because I was using the wrong E-Mail address :( ] > > Am 2022-10-30 07:28, schrieb Nicolas: > > Hi Christian, > > > > Regarding this screenshot, is there a way

VimConf 2022 ?

2022-11-07 Thread Nicolas
Hi, Regarding New features as vim9script, did i miss VimConf 2022 or is it not planned ? Thank you Nicolas -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://w

Emulate keyboard keys through Vim that the OS interpret it.

2022-11-12 Thread Nicolas
Is it possible to emulate keyboard keys through Vim Editor so that the OS interprets them? example: Is is possible to emulate Windows Key(VK_LWIN)+R keys? VK_LWIN as defined here https://learn.microsoft.com/fr-fr/windows/win32/inputdev/virtual-key-codes Thanks Nicholas -- -- You received th

vim9 Equivalence of __FILE__, __LINE__, and __FUNCTION__ usage in C++

2023-07-04 Thread Nicolas
Hi, Is there an equivalence in vim9 of __FILE__, __LINE__, and __FUNCTION__ usage in C++ <https://stackoverflow.com/questions/597078/file-line-and-function-usage-in-c> ? Thank you Nicolas -- -- You received this message from the "vim_use" maillist. Do not top-post! Type

Re: vim9 Equivalence of __FILE__, __LINE__, and __FUNCTION__ usage in C++

2023-07-04 Thread Nicolas
Hi Life, My Main goal is to add prefix of vim9script current '__FUNCTION__' to my debug message. Thank you for help Nicolas Le mardi 4 juillet 2023 à 22:11:31 UTC+2, Lifepillar a écrit : > On 2023-07-04, Nicolas wrote: > > Hi, > > > > Is there an equivalenc

Re: vim9 Equivalence of __FILE__, __LINE__, and __FUNCTION__ usage in C++

2023-07-07 Thread Nicolas
Oh thank you a lot Bram and all of you. It's helpful to know where we come from. In code, in Life too ;) Thank you Nicolas Le ven. 7 juil. 2023 à 04:19, Bram Moolenaar a écrit : > > Yegappan wrote: > > > On Tue, Jul 4, 2023 at 1:11 PM Lifepillar > wrote: > > &

Re: vim9 Equivalence of __FILE__, __LINE__, and __FUNCTION__ usage in C++

2023-07-07 Thread Nicolas
This deal with is displaying last tree called function and line. echomsg expand('')->split('')[-1]->substitute('\d\+_\(\w\+\)\[\(\d\+\)\]', '\1: \2', "") Thank you Bram. Nicolas Le ven. 7 juil. 2023 à 21:57, Nicolas a écrit : > O

Vim9 benchmark versus lua

2023-07-09 Thread Nicolas
Hi, I'm currently trading between lua 5.4 and vim9 script and found that for some pattern recognition tasks, to my surprise vim9 seems to outperform lua5. 4. Is there an up-to-date performance benchmark comparing vim9 to lua 5.4 among regex themes, calculations, io system like reading writing

Re: vim9 Equivalence of __FILE__, __LINE__, and __FUNCTION__ usage in C++

2023-07-09 Thread Nicolas
Thank you Tom. Le samedi 8 juillet 2023 à 22:28:16 UTC+2, Tom M a écrit : > I don't think Vim 9 script has the kind of introspection you are asking > for. > > > The v:throwpoint variable might help, as mentioned in :help > throw-variables. > > Tom > > -- -- You received this message from the

Re: Where is Bram?

2023-08-05 Thread Nicolas
children. A masterpiece that will remain engraved just like its author on this small planet. Courage to loved ones and family. We will miss you Bram. Nicolas [url= https://postimages.org/][img]https://i.postimg.cc/QtvjLc8d/Bram.png[/img][/url ] https://ibb.co/m8qpzY4";>https://i.ibb.co

Are function evaluated at Lambda declaration ?

2023-10-14 Thread Nicolas
Hi, Is this line declaration in vim9script evaluate the LogX_FOOBAR function or not ? var LambdDetectInLine: func = function('LogX_FOOBAR', [ LogX.pattern.start.func, LogX.codefunc]) # lambda like function Thank you Nicolas -- -- You rec

Re: Out_cb callback handler in vim9

2023-12-09 Thread Nicolas
Hi all, According to Bram example in the job's help now, Is it possible to pass additional parameters to job's handlers callback in vim9script ? Thank you Nicolas This minimalist example WORKING as Bram said: def Compress_OnExit(job_id: job, exit_status: number): void echom &

Re: Out_cb callback handler in vim9

2023-12-14 Thread Nicolas
Thank you Life it works perfectly ;) Nicolas Le dimanche 10 décembre 2023 à 20:55:57 UTC+1, Lifepillar a écrit : > On 2023-12-09, Nicolas wrote: > > Hi all, > > > > According to Bram example in the job's help now, > > Is it possible to pass additional parameters

Re: vim9 exported functions not recognized by ctags

2023-12-16 Thread Nicolas
Hi Life, How to get exported and not exported def vim9 functions please according to g:tagbar_type_vim = { 'ctagstype': 'vim', 'kinds': ['e:export'] }? Thank you Nicolas Le mercredi 10 août 2022 à 22:20:52 UTC+2, Lifepillar a écrit : > On 2022-

Re: vim9 exported functions not recognized by ctags

2023-12-16 Thread Nicolas
7;: ['e:export', 'g:global', 'K:const', 'f:function']} Hope this helps. nicolas Le sam. 16 déc. 2023 à 13:36, Nicolas a écrit : > Hi Life, > > How to get exported and not exported def vim9 functions please according > to g:tagbar_type_vim = {

Re: vim9 exported functions not recognized by ctags

2023-12-29 Thread Nicolas
It works perfectly Life even if there is no disctinction between exported vim9 func and the other func. ;) Thank you I keep your I wish you a happy holiday season Nicolas On Tuesday 19 December 2023 at 12:08:58 am UTC+1 Lifepillar wrote: > On 2023-12-16, Nicolas wrote: > > thi

Re: vim9 exported functions not recognized by ctags

2023-12-29 Thread Nicolas
\w+)/\3/L,vim9class/ --regex-vim=/^\s*(export\s+)?interface\s+(\w+)/\2/I,vim9interface/ On Friday 29 December 2023 at 10:09:22 am UTC+1 Nicolas wrote: > It works perfectly Life even if there is no disctinction between exported > vim9 func and the other func. > ;) > Thank you I ke

Re: vim9 exported functions not recognized by ctags

2024-01-10 Thread Nicolas
Thank you Ken and Happy new year. Nicolas. Le mer. 10 janv. 2024 à 09:16, Ken Takata a écrit : > Hi, > > I created an issue for this: > https://github.com/universal-ctags/ctags/issues/3913 > > 2023年12月29日金曜日 18:20:34 UTC+9 Christian Brabandt: > >> Hi, >> perha

Re: Introduce a PDF Viewer, and its behaviour like Vim

2008-11-20 Thread Nicolas Aggelidis
Excellent work! I am looking forward to see this project mature! I will test the reader this sunday. --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~

vim and bash

2008-12-03 Thread Nicolas Aggelidis
hi guys, in vim when i try to do something like this: :!ls i get==>> cannot execute shell /usr/local/bin/bash which is logical since my bash is at /bin/bash. Is there anyway to point vim to the correct path? thanks in advance, nicolas --~--~-~--~~~---~--~---

Re: vim and bash

2008-12-03 Thread Nicolas Aggelidis
thank you Cory! the "verbose set shell", saved my day! --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

tabline showing only the basename

2008-12-03 Thread Nicolas Aggelidis
in advance, nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: tabline showing only the basename

2008-12-04 Thread Nicolas Aggelidis
Thank you guys, problem solved! --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

mksession doesn't work as expected

2008-12-17 Thread Nicolas Aggelidis
hi to all the list, i have the following problem , and once again i need your help. i have the following configuration for sessions: set sessionoptions+=resize set sessionoptions+=slash set sessionoptions+=unix set sessionoptions+=winpos to save a session i do: mksession ~/sessions/session_nam

Re: mksession doesn't work as expected

2008-12-18 Thread Nicolas Aggelidis
ne,Column]=[%04l,%04v][%p%%]\ [%L\ Lines]\ [FILE=%F%m%r%h%w] thanks in advance for your answers, nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: mksession doesn't work as expected

2008-12-18 Thread Nicolas Aggelidis
session_name.vim source session_name.vim if this is not possible, can i define a sort of variable so that i can something like this: mksession $SESSION_DIR/session_name.vim source $SESSION_DIR/session_name.vim -nicolas --~--~-~--~~~---~--~~ You received this message

Re: mksession doesn't work as expected

2008-12-19 Thread Nicolas Aggelidis
Thanks for all your help guys, Tony i think i have some questions regarding the use of the statuslinei will search a bit a more and then i will come back and ask! thanks -nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use"

Vim and Bash-scripts navigation

2008-12-23 Thread Nicolas Aggelidis
g with this problem? > any other ideas or anyone else with simular problem? thanks in advance for all your help, -nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: Vim and Bash-scripts navigation

2008-12-23 Thread Nicolas Aggelidis
pts (Bourne/Korn/Z) > > And since bash is "Bourne again shell", I think that ctags will > properly handle them. thank Anton, classic case of PEBUAK... i opened tha page and searched for bash thanks again, nicolas --~--~-~--~~~---~--~~ You re

Re: Vim and Bash-scripts navigation

2009-01-05 Thread Nicolas Aggelidis
ing habits! i current work as a release engineer so i do alot of bash scripting {mainly for regression testing}, but i am a real newbie when it comes to vimscript... thanks again for all the answers, nicolas PS: sorry i answered so late, but i was in my hometown and i didn't have access

Re: Remove *TeX leftovers

2009-01-06 Thread Nicolas Aggelidis
re i keep the .tex file} with a target clean, that removes all the "leftover" files. When i type make clean it deletes everything i don't want. Maybe something like this will help you: $cat Makefile .PHONY: clean clean: rm -f *.log *.aux *.mpx i hope this helps, nicolas PS: i don

enable options based on variables

2009-01-12 Thread Nicolas Aggelidis
hi, i use vim both at work and at home so i share configuration files between them. is there any way to enable some options based on the value of global variable? i.e. athome=1 if (athome=1) set cursorline else set nocursorline or if (athome=1) let g:LookupFile_DefaultCmd = ':LUTags'

Re: enable options based on variables

2009-01-12 Thread Nicolas Aggelidis
thank you all, you 've been really helpfull! now i do things like this: if !has("gui_running") colorscheme developer endif if has("gui_running") colorscheme desert endif also i use bash-IDE script(in linux and bsd), i do something like this: set sh=/bin/bash if (g:freebsd == 1)

Re: Menu gone in gvim (guioptions)

2009-01-14 Thread Nicolas Aggelidis
i am sorry, but i didn't understand your issue. has your menu disappeared and you want it back? or you want it gone but it keeps reappearing? best regards, nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For m

diff on buffers

2009-01-23 Thread Nicolas Aggelidis
hi to all, one "quick" question: let's say that i have 2 files on 2 tabs, is it possible to open a third tab and gvimdiff the other 2 tabs to rephrase it, is it possible to vimdiff on 2 already opened buffers on a third buffer... thanks in advance for your

Re: diff on buffers

2009-01-23 Thread Nicolas Aggelidis
> Assuming those are the only two buffers you've got open: > > 1) :tabnew > 2) :vert all > 3) :windo diffthis thank you Tim for your help, unfortunately the method above, {the first you posted} didn't work... the other one worked like a charm... any ideas why the first didn't work? --~--~--

Re: Navigating complicated file hierarchies

2009-01-23 Thread Nicolas Aggelidis
> Hold your hats now, but Emacs users can do this. From Emacs they do > the equivalent of running :shell, then navigate to another directory > which becomes Emacs working directory. Now they can do the equivalent > of :e . > > Thanks! > -Per Thulin hi Per, i had the same need as you, and indeed

Re: Color Schemes?

2009-01-26 Thread Nicolas Aggelidis
eep.vim file and you place it on ~/.vim/colors then you start gvim and from the colorscheme menu you select oceandeap. another way to achieve the same result would be to press :colorscheme oceandeap also see :help :colorscheme best regards, nicolas --~--~-~--~~~---~-

Re: diff on buffers

2009-01-26 Thread Nicolas Aggelidis
i Tim, sorry for not answering earlier, but i didn't have access to internet Thanks for your answers, erik identified the problem, so everything works! best regards, nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use&qu

Re: offtopic - readability in programing fonts

2009-01-28 Thread Nicolas Aggelidis
On Tue, Jan 27, 2009 at 9:17 PM, fREW Schmidt wrote: > I use terminus in linux and consolas in windows, both around 8 or 10 in > size. > > And I love the InkPot colorscheme. It's not too dark or light. hi fREW, if you like consolas in windows, have you tried using inconsolata fonts on linux? T

Re: offtopic - readability in programing fonts

2009-01-28 Thread Nicolas Aggelidis
he same way from when i passed from courier to dejavu ...some years ago best regards, nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

open a file as readonly

2009-01-28 Thread Nicolas Aggelidis
hi to all, sometimes i open some files to view their contents, in the same time i have open some other files that i edit... because alot of times the names are very similar, is there any way to mark a file temporarily {for the session} as readonly? thanks in advance for your time, nicolas

Re: open a file as readonly

2009-01-28 Thread Nicolas Aggelidis
On Wed, Jan 28, 2009 at 4:02 PM, StarWing wrote: > > just :set nomodifiable thank you starwing! --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--

Text Substitution

2009-01-28 Thread Nicolas Aggelidis
be the most appropriate for the job? any ideas? (...or even solutions :) ) I am not sure i did correctly posting to vim-use, but i couldn't think any other mailing list relevant to text processing... best regards, nicolas --~--~-~--~~~---~--~~ You r

Re: Text Substitution

2009-01-28 Thread Nicolas Aggelidis
e most efficient way... i was thinking awk...but i am not sure it is the best way to proceed any suggestions are welcome! regards, nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: open a file as readonly

2009-01-29 Thread Nicolas Aggelidis
thanks for the suggestions! best regards, nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Auto-complete in substitution

2009-02-02 Thread Nicolas Aggelidis
prior to substituting + to use a lot more keystrokes... is there anyway to enable auto-complete, or a faster work around? best regards, nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information,

Dealing with address books

2009-02-10 Thread Nicolas Sebrecht
ris could have a (case insensitive) completion based on the alias, the first name, name or the email. Ideas ? -- Nicolas Sebrecht --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: Dealing with address books

2009-02-10 Thread Nicolas Sebrecht
ype the alias and hit when > you're composing the email, I'm assuming that you want to edit the > header once you're composing the email? Right. -- Nicolas Sebrecht --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: Dealing with address books

2009-02-10 Thread Nicolas Sebrecht
]): Y're giving me some work guys ! I'll read your macros when i'll get some free time. -- Nicolas Sebrecht --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: Dealing with address books

2009-02-10 Thread Nicolas Sebrecht
On Tue, Feb 10, 2009 at 10:16:47AM -0700, Glen Pfeiffer wrote: > > On Tue Feb 10, 2009 at 10:06:29AM -0700, Glen Pfeiffer wrote: > > On Tue Feb 10, 2009 at 01:55:42PM +0100, Nicolas Sebrecht wrote: > > > I'm using vim here with mutt. I would like to know how yo

Re: Dealing with address books

2009-02-10 Thread Nicolas Sebrecht
a.vim in case but it didn't help. What am I missing ? By the way, is it possible to set more than one single aliases file ? -- Nicolas Sebrecht --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: Dealing with address books

2009-02-11 Thread Nicolas Sebrecht
eld. That's weird as mutt add aliases lines where fields are seperated by spaces. Anyway, I've try with \t without success. > It shouldn't be very complex, however you'll have to hack into the ftplugin to > make it work that way. Ok. Do you have any public git repository

Re: Dealing with address books

2009-02-11 Thread Nicolas Sebrecht
e into ":imap ^Wf". ":imap" does nothing. ":imap" change the line into ":imapclear" > Are ftplugins enabled ? Hmm. Aren't they automatically sourced ? > A SVN one, but my mail-ftplugins are not there (yet). Address please ? -- Nicolas S

Re: Dealing with address books

2009-02-11 Thread Nicolas Sebrecht
Check the first link in my signature ^^ Oh damn ! I didn't see. :-) -- Nicolas Sebrecht --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: Dealing with address books

2009-02-11 Thread Nicolas Sebrecht
On Wed, Feb 11, 2009 at 03:18:22PM +0100, Nicolas Sebrecht wrote: > > You can send me directly (i.e. not on the mailing list) an excerpt of > > your aliases_file to see how vim 7.2 behaves. > > Will do. After some next private mail exchanges I could fix the problem by addin

Re: The list policy, AGAIN

2009-03-30 Thread Nicolas Sebrecht
off irrelevant parts when quoting" -- Nicolas Sebrecht --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

setting vim tabline

2009-03-31 Thread Nicolas Aggelidis
Error detected while processing function VimTabLabel: line5: E714: List required line 16: E15: Invalid expression: 0 Press ENTER or type command to continue is there any way to convert it for vim? thanks in advance for any help, nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

OS-agnostic path separator

2009-05-01 Thread Nicolas Aggelidis
$HOME/.vim/key_bindings.vim so that it is valid both on windows and on linux? thanks in advance for your answers! -nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: OS-agnostic path separator

2009-05-01 Thread Nicolas Aggelidis
On Fri, May 1, 2009 at 9:39 PM, Matt Wozniski wrote: > This should work perfectly fine, both / and \ are recognized as path > separators on windows. you were right! i had renamed .vim file to _vim so this was the problem... --~--~-~--~~~---~--~~ You received this

Re: Please tell me how to do use cscope or ctag with php

2009-05-01 Thread Nicolas Sebrecht
27;*.c' ./b.c ./z/b.c ./y/r.c % -- Nicolas Sebrecht --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: C Comment Autoindenting

2009-05-01 Thread Nicolas Sebrecht
I can only get the *'s to align >automatically. >/* > */. >Is there a way to get the / to align with the *? Sorry for that question, but why? It's much more readable like this: /* * Comment */ No? -- Nicolas Sebrecht --~--~-~--~~--

Re: Please tell me how to do use cscope or ctag with php

2009-05-01 Thread Nicolas Sebrecht
27;*.c' ./b.c ./z/b.c ./y/r.c % -- Nicolas Sebrecht --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: OS-agnostic path separator

2009-05-02 Thread Nicolas Aggelidis
source $HOME/.vim/matchings.vim endif i tried using a .vim folder in windows, but i noticed that in this case colorschemes(colors folder, located in .vim/colors) weren't loaded -nicolas --~--~-~--~~~---~--~~ You received this message from the &q

omnicomplete and CSS

2009-05-24 Thread Nicolas Aggelidis
SERT -- to -- (insert) -- any ideas? thanks in advance for your time, nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: omnicomplete and CSS

2009-05-24 Thread Nicolas Aggelidis
On Sun, May 24, 2009 at 7:00 PM, Nicolas Aggelidis wrote: > hi guys i am trying to use omnicomplete with a css file, and it doesn't > work > > i followed instructions from here: > > http://amix.dk/blog/viewEntry/19021 > > specifically i added the following t

Re: omnicomplete and CSS

2009-05-25 Thread Nicolas Aggelidis
;ed to something else. > > ~Matt Thanks for your help matt and per! Matt your are probably right, but how can i see which plugin mapped the ? -nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: omnicomplete and CSS

2009-05-26 Thread Nicolas Aggelidis
On Mon, May 25, 2009 at 11:32 AM, Simon Ruderich wrote: >> Matt your are probably right, but how can i see which plugin >> mapped the ? >> >> -nicolas > > :verbose map! > > Simon thank you Simon, for your tip! after some research it seems like the problem

changing modes with non-english language

2009-06-11 Thread Nicolas Aggelidis
they solve this problem... thanks for your time! nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: changing modes with non-english language

2009-06-12 Thread Nicolas Aggelidis
,ιi,ξj,κk,λl,μm,νn,οo,πp,qq,ρr, σs,τt,θu,ωv,ςw,χx,υy,ζz but when in normal mode with greek keyboard i press α [mapped to a] but i can't append text...so something didn't work... any ideas? nicolas --~--~-~--~~~---~--~~ You received this message from th

repos of binary vim (patched)

2009-06-12 Thread Nicolas Aggelidis
hi to all, is it possible for someone to acquire a newer patched version of vim, without compiling? secondly, if i have to compile is it possible to use Microsoft's compiler and not cygwin-gcc? thanks in advance, nicolas --~--~-~--~~~---~--~~ You received

Re: repos of binary vim (patched)

2009-06-13 Thread Nicolas Aggelidis
> The Cream project is currently nice enough to provide downloads for > up-to-date windows vim binaries that don't include the Cream runtime > changes. This can be used to get a recent vim patchlevel on windows > without needing to compile vim yourself. > > http://cream.sf.net/download.html > tha

vim and windows vista

2009-07-14 Thread Nicolas Aggelidis
hi vimmers! i am interested in testing windows 7, so i am wondering if vim is compatible with them... best regards, nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: vim and windows 7

2009-07-14 Thread Nicolas Aggelidis
On Tue, Jul 14, 2009 at 7:14 PM, George V. Reilly wrote: > > [Changed Subject line] > > I've been running Vim on the 64-bit version of Windows 7 for the last > few weeks without any problems. Feels just like it did on Vista, XP, > Server 2003, etc. > > The only thing that needs changing is that th

problem with file encodings and vimball

2009-07-19 Thread Nicolas Aggelidis
every file needs to be the same encoding is there anyway to bach convert the encodings of all files? best regards, nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: problem with file encodings and vimball

2009-07-19 Thread Nicolas Aggelidis
doing: vim netrw.vba :so % now i get the following error : E670: Mix of file encodings within a language: $HOME\vimfiles\doc\pi_netrw.txt If i examine the file pi_netrw.txt i see that it has a bom... why this? Is it because of my settings? thanks again for your help! nicolas PS: is there any way

Re: problem with file encodings and vimball

2009-07-19 Thread Nicolas Aggelidis
> Could be. What's the answer to > >        :verbose setglobal bomb? > > (with the question mark)? > i have the following in my .vimrc if has("multi_byte") if &termencoding == "" let &termencoding = &encoding endif set encoding=utf-8"Sets the character encoding used inside Vim. se

Re: slightly OT: other diff programs

2009-07-19 Thread Nicolas Aggelidis
An interesting topic What diff application fellow vimmers use? i use vimdiff and sometimes meld or the integrated diff application of smartsvn... --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://w

Re: slightly OT: other diff programs

2009-07-20 Thread Nicolas Aggelidis
> diff/merge operation that Vim+diff.exe can't handle. I checked out the > home page for meld...it didn't look like there is a Windows version. > Anybody know better? I wouldn't mind giving it a shot. Hi Ben, i don't think there is a Windows version for meld... --~--~-~--~~-

Re: Hello,Every one,I can use the "textwidth" option !

2009-07-29 Thread Nicolas Sebrecht
rong, you should review your configuration files and your plugins. -- Nicolas Sebrecht --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: Four vimrc questions: converting buffers to tabs, making buffers vertical, changing open start position and limiting empty lines

2009-08-05 Thread Nicolas Aggelidis
e when opening files instead of :e afile.txt type :tabe afile.txt hope this helps! nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

weird plug in problem

2009-08-18 Thread Nicolas Aggelidis
?script_id=1494 thanks for your help, nicolas PS: i cc the plugin authors.. --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Re: weird plug in problem

2009-08-19 Thread Nicolas Aggelidis
thanks martin, you solved my problem! best regards, nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

Problem with minibuf explorer and project plugin

2009-08-19 Thread Nicolas Aggelidis
problem? nicolas minibufexpl.vim : Elegant buffer explorer - takes very little screen space http://www.vim.org/scripts/script.php?script_id=159 project.tar.gz : Organize/Navigate projects of files (like IDE/buffer explorer) http://www.vim.org/scripts/script.php?script_id=69

Re: Problem with minibuf explorer and project plugin

2009-08-19 Thread Nicolas Aggelidis
sorry for the follow up. The settings in my vimrc concerning minibufexplorer are: let g:miniBufExplorerMoreThanOne=1 let g:miniBufExplUseSingleClick = 1 let g:miniBufExplModSelTarget = 1 let g:miniBufExplMapCTabSwitchBufs = 1 let python_highlight_all =1 let python_slow_sync = 1 --~--~-~-

Re: Problem with minibuf explorer and project plugin

2009-08-21 Thread Nicolas Aggelidis
quite a lot, when changing files from different directories. I also think (but i am not sure) that if autochangedir is set the misbehavior happens more frequently... best regards, nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use"

Re: python autocomplete

2009-08-26 Thread Nicolas Aggelidis
hough i can complete with success this stage Verify that imports will work by typing :python from django import db any others with more success in autocompleting python-django code? nicolas PS except from DJANGO_SETTINGS_FILE i've also set the following va

Re: Minimap in VIM ?

2009-10-19 Thread Nicolas Aggelidis
> Could we write a plugin ? I dont know the architecture of VIM if it > supports plugin or not !?! > > They have done it in Emacs ;) then we have to find a way : > http://www.emacswiki.org/emacs/MiniMap > wow! sublime minimap looks great! --~--~-~--~~~---~--~~ Yo

Re: Minimap in VIM ?

2009-11-16 Thread Nicolas Aggelidis
above in good spirit! i am thankful for the vim editor just as it is! (although i would prefer to have features like minimap) best regards, nicolas --~--~-~--~~~---~--~~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

  1   2   >