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, >> pe

Re: vim9 exported functions not recognized by ctags

2023-12-29 Thread Nicolas
day 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 keep your > I wish you a happy holiday season > Nicolas > > On Tuesday 19 Decembe

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-16 Thread Nicolas
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 = { 'ctagstype': 'vim', 'kinds': ['e:export'] }? > > Thank you >

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-08-10, N V wrote: > > Hi, > &g

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: 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 'Job OnExit

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 received

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/m8qp

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

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

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 : > Oh thank you a lot Bram and all of you. I

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-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 equivalence in vim9

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: What to use for....

2023-04-24 Thread Nicolas George
lines to make them readable. And then use a pre-processor, possibly along with a makefile, to turn it to the syntax you need. Regards, -- Nicolas George -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying

Perl syntax highlight change

2023-03-04 Thread Nicolas George
egards, -- Nicolas George -- -- 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.org/maillist.php --- You received this message because you are subscribed to the Google

Re: how to get more efficient writing code

2023-01-03 Thread Nicolas Dermine
hi, On Wed, Jan 4, 2023 at 7:56 AM jr wrote: > hi, > > On Wed, 4 Jan 2023 at 06:44, Igor Lerinc wrote: > > > > can you reccomend me some youtube chanells, or videos, where programmers > actually use Vim to edit code, and work with all that complex stuff. > > just to give me idea, how they do

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

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

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

Re: pb with nnoremap an imported vim9 defnot loaded

2022-10-31 Thread Nicolas
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 blink searc

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.HLNext(80

vim9 script folding brackets near deffunc break syntax

2022-10-30 Thread Nicolas
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.org/ma

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: > > vim --star

Re: vim airline too consumption starting time

2022-10-30 Thread Nicolas
/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 is starting

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 recomme

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: 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

Share variables between Two vim9 def functions

2022-10-18 Thread Nicolas
s 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 your reply below the text you are

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

2022-10-18 Thread Nicolas
() 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, > > it seems ca

vim9script autocommand not recalled more than one time ??

2022-10-15 Thread Nicolas
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 help Nicolas -- -- You

Re: sed whole file

2019-10-06 Thread Nicolas George
d in general perusing context. My work-around for now is to remove the % while editing and put it back before executing. But I also would like a way of enabling 'incsearch' for searches and disabling for replacement. Regards, -- Nicolas George -- -- You received this message from the "

Re: How to get to the helppage of shiftwidth in options.txt?

2015-03-31 Thread Nicolas Dermine
hi, On Mon, Mar 30, 2015 at 9:02 AM, Gary Johnson garyj...@spocom.com wrote: On 2015-03-29, Tim Chase wrote: [side rant] On 2015-03-29 18:28, toothpik wrote: let mapleader = ',' I've never understood why people remap the exceptionally useful functionality of , to become the map-leader.

Re: vim: least key stroke to replace a word

2015-02-17 Thread Nicolas Dermine
Hi, On Tue, Feb 17, 2015 at 7:18 PM, ping song songpingem...@gmail.com wrote: experts: I know this looks stupid and simple, but I don't know the answer right now. say I want to replace a word : from: abc 456 to: 123456 what I did is: 1. put my cursor in a, then cw123escx ,

Re: Searching for any one of a set or words ?

2014-09-20 Thread Nicolas Dermine
hi Philip, On Sat, Sep 20, 2014 at 3:09 PM, Philip Rhoades p...@pricom.com.au wrote: People, If I have words in a file - either on the same or separate lines - is it possible, within vim (I could probably do what I want with a shell script and grep) to search for _any_ of the words in the

Re: customizing vim in RHEL 5.9

2014-02-03 Thread Nicolas Dermine
On Mon, Feb 3, 2014 at 4:55 PM, nagaraj visit...@gmail.com wrote: Hi, I am working on RHEL 5.9 systems. The default installed vim editor is not working fully. My problems: No syntax highlighting. No cursor position display No column and row numbers. No visual selection (visual block,

Re: vim blog plugin anyone?

2013-11-23 Thread Nicolas Dermine
On 23 Nov 2013 04:13, Keith Kaple k...@cisco.com wrote: On Fri, Nov 22, 2013 at 03:47:01PM -0500, Karl Harris wrote: Keith Kaple wrote: I'm a developer and pretty much do everythig in vim, I was wondering if a plugin existed which would do the following. 1 record my activity daily

Re: Move to previous tab after quit

2013-11-01 Thread Nicolas Dermine
://vim.wikia.com/wiki/Have_focus_on_left_tab_after_tabclose Neither one is very automatic. Some more here : http://stackoverflow.com/questions/14079149/vim-automatically-show-left-tab-after-closing-tab Nicolas -- -- You received this message from the vim_use maillist. Do not top-post! Type your

Re: A small feature request for Vim 7.4

2013-07-15 Thread Nicolas Dermine
hope the example was useful to understand the 'issue'. Thanks... Hi, for what it's worth when I try and reproduce your steps on the same text (Ctrl+V 2j starting on 'f'), the letters 'f', 's' and 't' are highlighted. I tried with colorscheme koehler and default, Vim 7.3 on windows 7. Nicolas

Fortran comments not continued

2013-05-21 Thread Nicolas Bock
Hi, When editing Fortran I set comments=s:!,m:!!,e:!!,:! unfortunately, vim refuses to print the middle comment leader '!!' when I start a comment with '!' or a simple '!' continuing a comment started with '!'. I don't understand why. Thanks already, nick -- -- You received this message

Re: Fortran comments not continued

2013-05-21 Thread Nicolas Bock
They were set to formatoptions=tcql I added 'ro' now, and it works. Beautiful! Thanks so much for your help, nick On Tue, May 21, 2013 at 3:38 PM, Ben Fritz fritzophre...@gmail.com wrote: On Tuesday, May 21, 2013 11:24:00 AM UTC-5, Nicolas Bock wrote: Hi, When editing Fortran I

Re: delete last character of multiple lines

2013-05-08 Thread Nicolas Dermine
On Thu, May 9, 2013 at 12:44 AM, yoni kessler yoni101kess...@gmail.comwrote: thanks allot! I'm a bit familiar with regex, but can you please explain what exactly does :',' means? Hi Yoni, The ',' range stands for the current (or last) visual selection. When you have a visual selection

Re: substitution with accented characters

2013-04-16 Thread Nicolas Dermine
On Wed, Apr 17, 2013 at 3:52 AM, Cesar Romani cesar.rom...@gmail.comwrote: Suppose I have the following text: Diagonalizaci#243;n de matrices. Formas cuadr#225;ticas. El Espacio Af#237;n El problema de la Programaci#243;n Lineal El Espacio Eucl#237;deo How can I replace the #...; with

Re: Moving the cursors down without scrolling the text

2013-04-14 Thread Nicolas Dermine
On 14 Apr 2013 14:10, meino.cra...@gmx.de wrote: Hi, I have two questions: How can one move the cursor in vim (not gvim) from any point in the text to the last/first currently displayed line without scrolling the displayed text. Hi mcc, In normal mode H moves the cursor to the top. L

Re: vim: is there an easy way to visual select the just pasted texts?

2013-02-08 Thread Nicolas Dermine
On Fri, Feb 8, 2013 at 5:45 PM, ping songpingem...@gmail.com wrote: On 2/7/2013 3:39 PM, ping wrote: this is a small feature I constantly wanted to have but failed, I thought it hardly , and my idea is: use a function or new map, to make sure before paste, recording the positions/marks of

Re: question: vim copy to another place, eg:doc

2013-01-02 Thread Nicolas Dermine
On Thu, Jan 3, 2013 at 5:44 AM, lei yang yanglei.f...@gmail.com wrote: On 1/3/13, Phil Dobbin phildob...@gmail.com wrote: On 01/03/2013 02:15 AM, lei yang wrote: Hi experts, I know in one text,we can use yy to copy something to another place in text, if I can't to copy something to

Re: Menu trigger a user mapping

2012-12-22 Thread Nicolas Dermine
On 22 Dec 2012 15:52, David Fishburn dfishburn@gmail.com wrote: Not quite sure how to set this up. When I create a menu item it usually calls a command vnoremenu script MyMenu.Test :TestCR What I want it to do instead is trigger one of my maps. vnoremenu script MyMenu.Test \tt

Re: Reload Buffer

2012-12-20 Thread Nicolas Dermine
On 21 Dec 2012 07:16, Niels Kobschätzki ni...@kobschaetzki.net wrote: On 21 Dec 2012, at 6:52, stillLearningVim wrote: Is there a way to reload the vimrc (and other files), so that the changes in the vimrc take immediate effect. :e doesn't seem to do the trick. :source PATH_TO_FILE i.e.:

Re: git vim and diff

2012-08-09 Thread Nicolas Dermine
On 9 Aug 2012 11:22, sinbad sinbad.sin...@gmail.com wrote: i am using vcsgit, i want to know what values should i set in VCSCommandGitDiffOpt so that i can view diffs between working dir/index, working dir/last commit, working dir/head and all other combinations. or if anyone using anyother

Re: vim: current best recommended script/function debug method/tool/plugins?

2012-08-03 Thread Nicolas Dermine
On 3 Aug 2012 07:03, ping songpingem...@gmail.com wrote: folks: I'm a newbie to vimL/vim script. I'm trying to define my own functions and keep getting errors. Especially I hope there is a way to quickly get the value of my var -- a way better than insert echo var1|sleep 3 for every var that

Re: Remove spaces and line breaks and make single line wihtout spaces

2012-07-20 Thread Nicolas Dermine
On 20 Jul 2012 11:30, Dominique Pellé dominique.pe...@gmail.com wrote: Jürgen Krämer j...@habel.de wrote: Hi, Am 20.07.2012 11:09 schrieb vicky b vickyb2...@gmail.com: HI, I dint find any specific solution for my problem even after much of googling i have following line

Re: new toolbar

2010-03-08 Thread Nicolas Aggelidis
On Mon, Mar 8, 2010 at 11:02 PM, epanda callingel...@hotmail.fr wrote: Hi, I have relinked Gvim with an augmented height toolbar. I know that the aim of vim is to ficus on text features but watch this new look : nice! here is the link: http://img21.imageshack.us/img21/7841/myvimtoolbar.jpg

Programming With Proportional Fonts?

2010-01-23 Thread Nicolas Aggelidis
, in gvim (windows/linux)? best regards, nicolas -- You received this message from the vim_use maillist. For more information, visit http://www.vim.org/maillist.php

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! --~--~-~--~~~---~--~~ You

Re: python autocomplete

2009-08-26 Thread Nicolas Aggelidis
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 variable: DJANGO_SETTINGS_MODULE

Re: Problem with minibuf explorer and project plugin

2009-08-21 Thread Nicolas Aggelidis
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 maillist. For more information, visit http://www.vim.org

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

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: Four vimrc questions: converting buffers to tabs, making buffers vertical, changing open start position and limiting empty lines

2009-08-06 Thread Nicolas Aggelidis
: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 -~--~~~~--~~--~--~---

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

2009-07-29 Thread Nicolas Sebrecht
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: 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...

problem with file encodings and vimball

2009-07-19 Thread Nicolas Aggelidis
? if 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
: 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 to pipe the output of a command (i.e vim netrw.vba) to a buffer

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

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. Reillygeo...@reilly.org 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

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 thank you

Re: omnicomplete and CSS

2009-05-26 Thread Nicolas Aggelidis
On Mon, May 25, 2009 at 11:32 AM, Simon Ruderich si...@ruderich.org wrote: Matt your are probably right, but how can i see which plugin mapped the C-x? -nicolas :verbose map! Simon thank you Simon, for your tip! after some research it seems like the problem isn't caused by a bad mapping

Re: omnicomplete and CSS

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

omnicomplete and CSS

2009-05-24 Thread Nicolas Aggelidis
-- 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 n.aggeli...@gmail.com 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 to my vimrc autocmd

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

2009-05-02 Thread Nicolas Sebrecht
% -- Nicolas Sebrecht --~--~-~--~~~---~--~~ You received this message from the vim_use maillist. For more information, visit http://www.vim.org/maillist.php -~--~~~~--~~--~--~---

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

2009-05-02 Thread Nicolas Sebrecht
% -- 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
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 vim_use maillist. For more information, visit http

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 m...@drexel.edu 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

setting vim tabline

2009-03-31 Thread Nicolas Aggelidis
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 -~--~~~~--~~--~--~---

Re: The list policy, AGAIN

2009-03-30 Thread Nicolas Sebrecht
On Tue, Mar 31, 2009 at 09:53:18AM +0800, pansz wrote: May I suggest that any subscribers must send an email with the content such as I know the community rule and I will bottom-post in order to subscribe? And: I will avoid HTML I will snip off irrelevant parts when quoting -- Nicolas

Re: Dealing with address books

2009-02-11 Thread Nicolas Sebrecht
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 ? -- Nicolas Sebrecht --~--~-~--~~~---~--~~ You received

Re: Dealing with address books

2009-02-11 Thread Nicolas Sebrecht
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 Sebrecht --~--~-~--~~~---~--~~ You received this message from the vim_use maillist

Re: Dealing with address books

2009-02-11 Thread Nicolas Sebrecht
. :-) -- 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 adding the line : :let

Dealing with address books

2009-02-10 Thread Nicolas Sebrecht
...@invalid.invalid 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

Re: Dealing with address books

2009-02-10 Thread Nicolas Sebrecht
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
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 you improve your mutt mail_aliases file

Re: Dealing with address books

2009-02-10 Thread Nicolas Sebrecht
? 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 -~--~~~~--~~--~--~---

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, visit http://www.vim.org

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 -~--~~~~--~~--~--~---

Re: offtopic - readability in programing fonts

2009-01-28 Thread Nicolas Aggelidis
On Tue, Jan 27, 2009 at 9:17 PM, fREW Schmidt fri...@gmail.com 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

Re: offtopic - readability in programing fonts

2009-01-28 Thread Nicolas Aggelidis
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 -~--~~~~--~~--~--~---

Re: open a file as readonly

2009-01-28 Thread Nicolas Aggelidis
On Wed, Jan 28, 2009 at 4:02 PM, StarWing weasley...@sina.com 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
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 received this message from the vim_use

Re: Text Substitution

2009-01-28 Thread Nicolas Aggelidis
to find out the 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

Re: Color Schemes?

2009-01-26 Thread Nicolas Aggelidis
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 --~--~-~--~~~---~--~~ You

Re: diff on buffers

2009-01-26 Thread Nicolas Aggelidis
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 maillist. For more information, visit http

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 time, nicolas

  1   2   >