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

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

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

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

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

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 equivalenc

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
e how you want to write it, split the 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 yo

Perl syntax highlight change

2023-03-04 Thread Nicolas George
issing? 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 to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to t

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 it

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

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

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

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

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

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

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

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: sed whole file

2019-10-06 Thread Nicolas George
bout copy-pasting and 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

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 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. I

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 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 cw123x , 7 strokes >

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 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 set? > > eg I h

Re: customizing vim in RHEL 5.9

2014-02-03 Thread Nicolas Dermine
On Mon, Feb 3, 2014 at 4:55 PM, nagaraj 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, ctrl+v) > curso

Re: Macros in Vim

2013-12-25 Thread Nicolas Dermine
On Wed, Dec 25, 2013 at 8:24 PM, DwigtArmyOfChampions < dwightarmyofchampi...@hotmail.com> wrote: > So many tutorials tell me how to record a macro and how to run it. But > nowhere does it say what I'm supposed to do with them. I don't understand > what kinds of commands usually get recorded in ma

Re: "vim blog" plugin anyone?

2013-11-23 Thread Nicolas Dermine
On 23 Nov 2013 04:13, "Keith Kaple" 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 a

Re: Move to previous tab after quit

2013-11-01 Thread Nicolas Dermine
left when closing a window. How can I do this? > > > > > > A couple of suggestions here: > > http://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-automatical

Re: A small feature request for Vim 7.4

2013-07-15 Thread Nicolas Dermine
s 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 > > -- > -- > You received this message from the "vim_use" mail

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 wrote: > On Tuesday, May 21, 2013 11:24:00 AM UTC-5, Nicolas Bock wrote: > > Hi, > > > > When editing

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: delete last character of multiple lines

2013-05-08 Thread Nicolas Dermine
On Thu, May 9, 2013 at 12:44 AM, yoni kessler wrote: > 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 and type :, the

Re: substitution with accented characters

2013-04-16 Thread Nicolas Dermine
On Wed, Apr 17, 2013 at 3:52 AM, Cesar Romani wrote: > Suppose I have the following text: > > Diagonalización de matrices. Formas cuadráticas. > El Espacio Afín > El problema de la Programación Lineal > El Espacio Euclídeo > > How can I replace the &#...; with their corresponding characters? > > I

Re: Moving the cursors down without scrolling the text

2013-04-14 Thread Nicolas Dermine
On 14 Apr 2013 14:10, 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 to the bott

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 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 the 2 lines that

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 wrote: > On 1/3/13, Phil Dobbin 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 another place, eg: from

Re: Menu trigger a user mapping

2012-12-22 Thread Nicolas Dermine
On 22 Dec 2012 15:52, "David Fishburn" wrote: > > Not quite sure how to set this up. > > When I create a menu item it usually calls a command > vnoremenu

Re: Reload Buffer

2012-12-20 Thread Nicolas Dermine
On 21 Dec 2012 07:16, "Niels Kobschätzki" 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.: :source ~/.

Re: git vim and diff

2012-08-09 Thread Nicolas Dermine
On 9 Aug 2012 11:22, "sinbad" 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 better > script to

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

2012-08-03 Thread Nicolas Dermine
On 3 Aug 2012 07:03, "ping" 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 I want to inspe

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é" wrote: > > Jürgen Krämer wrote: > > > Hi, > > > > Am 20.07.2012 11:09 schrieb "vicky b" : > > > >> > >> 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 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 -- You received

Programming With Proportional Fonts?

2010-01-23 Thread Nicolas Aggelidis
,like Lucida Sans, 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-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 -~--~~~~--~~--~--~---

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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: 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
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
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-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-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
]): 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
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 -~--~~~~--~~--~--~---

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

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,

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

  1   2   >