Re: cpo-=l

2011-10-19 Fir de Conversatie James Vega
for 'encoding' was due to supporting 16-bit platforms. [0]: http://article.gmane.org/gmane.editors.vim.devel/22998 -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: Patch: support for the "space" argument for "listchars"

2011-10-05 Fir de Conversatie James Vega
dering what happened > > to this patch to enable a "space" option for listchars? It's in the todo list (c.f., :help todo). > Can you point me to the patch? http://mid.gmane.org/19e866460910290309w275b07bhb8e7a5a5fdf69...@mail.gmail.com -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: GtkFileChooser broken again

2011-09-26 Fir de Conversatie James Vega
e a feeling it's related to the lseek that the fdopen does on the pipe fd (which causes a SIGPIPE), though. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega diff --git a/src/gui.c b/src/gui.c --- a/src/gui.c +++ b/src/gui.c @@ -212,7 +212,6 @@ int status; int exit_status;

[patch] Honor 'switchbuf's "newtab" with :sb commands

2011-09-23 Fir de Conversatie James Vega
t; nor "newtab". The code, on the other hand, does honor "split" and, with the attached patch, will also honor "newtab" for :sb-type commands. This seems to follow the intent of the feature. Thanks, -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega -- You re

[patch] Correct completion for :compiler command

2011-09-23 Fir de Conversatie James Vega
Hi all, Since patch 7.3.237, completion for the :compiler command has been completing colorschemes instead. Attached patch fixes this. Thanks, -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega -- You received this message from the "vim_dev" maillist. Do not top-post! Type

Re: Windows scriptin and user input

2011-09-20 Fir de Conversatie James Vega
e Windows systems I have access to. Can you provide the output of ":version"? -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: Any way to just not display "^M" characters ?

2011-09-19 Fir de Conversatie James Vega
like a use for the conceal feature that was introduced in 7.3. Something like :syn match mixedLineEndings " $" conceal :set conceallevel=3 Although, this will only hide the "^M" on lines other than the one your cursor is on. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

[patch] Restore behavior of C on blank last line

2011-09-14 Fir de Conversatie James Vega
r in insert mode on line 2. After 7.3.251, line 2 is deleted and the cursor is in insert mode at the *start* of line 1. Since 7.3.251 was just supposed to special case for gH, the attached patch verifies the op is OP_DELETE before using the new behavior. -- James GPG Key: 1024D/61326D40 2003-09

Re: Fwd: vim cursor movement on InsertLeave

2011-09-08 Fir de Conversatie James Vega
you need to use a. There's some more explanation and, if you still want to change it, some ideas of how to work around it on the wiki[0]. [0]: http://vim.wikia.com/wiki/Prevent_escape_from_moving_the_cursor_one_character_to_the_left -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: GtkFileChooser broken again

2011-09-08 Fir de Conversatie James Vega
eneral problem with initializing a library and then using it across a fork. The problems are likely just more apparent with Gtk. I had meant to look into this when I first found the RedHat bug, but never got around to it. Thanks for bringing up the discussion and potential ideas. [0]: https://bugzi

Re: Bug in 7.3.301: 'modified' not set when buffer changed by BufRead autocommand

2011-09-07 Fir de Conversatie James Vega
wFile, BufRead/BufReadPost, BufWritePost, FileAppendPost and VimLeave events do not set or reset the changed flag of the buffer. … If you do want the buffer to be marked as modified, set the 'modified' option. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: Inconsistent jump after undo of multi-line change

2011-09-04 Fir de Conversatie James Vega
keepjumps command to perform an action without altering the jump list. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

[patch] Crash with EOL visual-block over a fold

2011-09-01 Fir de Conversatie James Vega
l being set to MAXCOL, so the sum in the above comparison overflows and incorrectly causes the comparison to succeed. So, RL_MEMSET walks off the end of ScreenAttrs. Attached patch fixes the problem. Thanks, -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega diff --git a/src/screen.c b/src/

Allow expected getchar() behavior in maps

2011-08-30 Fir de Conversatie James Vega
ttached patch to remove that restriction. Thanks, James [0]: http://mid.gmane.org/201009222031.13720@-zyx -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega diff --git a/runtime/doc/map.txt b/runtime/doc/map.txt --- a/runtime/doc/map.txt +++ b/runtime/doc/map.txt @@ -237,8 +237,6 @@ - Edi

Re: :python forwarding to :py3 and vice-versa in case of incompatibility

2011-08-23 Fir de Conversatie James Vega
w library version (c.f., discussion in Debian's BTS[1]). With the standalone modules, it's obvious what the library dependency is since the module is directly linked to the library. [0]: http://thread.gmane.org/gmane.editors.vim.devel/22759/focus=22765 [1]: http://bugs.debian.org/cgi-bin/

Re: Patch 7.3.220

2011-08-22 Fir de Conversatie James Vega
Traceback (most recent call last): File "", line 1, in UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 0: ordinal not in range(128) 2) Print a properly encoded line from the buffer: :set enc? encoding=utf-8 :call setline(1, nr2char(243)) :py import vim :py print vim.current.buffer[0] Traceback (most recent call last): File "", line 1, in UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 0: ordinal not in range(128) Changing "es#" to "et#" appears to fix the problem, but I'm not positive that's the correct fix. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: Bug in bufexplorer plugin related to 'Show buffers/tab'

2011-07-31 Fir de Conversatie James Vega
Adding bufexplorer's author to Cc. On Sun, Jul 31, 2011 at 07:34:11AM -0700, rehan wrote: > I wonder if anyone can help me with the following bug, that is > reducing the functionality (for me) of this great plugin. > > I am having problems with the 'Show buffers/tab' functionality. > Sometimes it

Re: [PATCH] fix man page viewing with man-db

2011-07-25 Fir de Conversatie James Vega
Fixes problems when user has > defined $MANPAGER > silent execute "!MANPAGER=".manpager." /usr/bin/man ".args."| col -b > > ".tmp Using "!env MANPAGER=" is better as not all shells support declaring environment variables to use for

Re: dosini syntax

2011-07-15 Fir de Conversatie James Vega
d to Sean & Nima in 2008, but we never got a response. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: Vim taken from http://tuxproject.de.nyud.net/projects/vim/ crashes under wine

2011-07-10 Fir de Conversatie James Vega
c $(INCL) 663 $(CC) -c $(CFLAGS) $(PYTHONINC) -DDYNAMIC_PYTHON_DLL=\"python$(PYTHON_VER).dll\" $< -o $@ My guess is that $(PYTHON)/win32inc isn't the correct path for your setup. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Fix [count]gj movement when count > 1

2011-06-13 Fir de Conversatie James Vega
Bram, Attach patch fixes incorrect movement when using gj with a count and the initial line is shorter than subsequent wrapped lines. Thanks, -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega # HG changeset patch # User James Vega # Date 1308016431 14400 # Node ID

Re: Issue 7 in vim: terminal resize during file recovery

2011-06-07 Fir de Conversatie James Vega
I can remember in xterm on a variety > of Unixes. Did you try this in the specific scenario of a swap file recovery prompt? That was the described scenario and I can reproduce the behavior. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: ; and , functionality with t command

2011-05-20 Fir de Conversatie James Vega
l, tX means "find the next X on this line and place the cursor on the character before it." Just because one use case of t/T/;/, doesn't move the cursor doesn't mean that there is a problem. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega -- You received this messag

Re: Ubuntu Natty 11.04: Trouble with the Ruby plugin for VIM

2011-05-12 Fir de Conversatie James Vega
ve the ruby language bindings. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Reproducibility of test61

2011-05-11 Fir de Conversatie James Vega
deb.li/Yjgx [1]: http://deb.li/3jEll [2]: http://deb.li/p6Vg -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: stderr issue with mksh/pdksh

2011-04-14 Fir de Conversatie James Vega
ksh. Right. So, either option.c has to learn about mksh/pdksh or people using those shells can add something like if &shell =~? '\%(m\|pd\)ksh' set shellredir=>%s\ 2>&1 endif to their vimrc. On the bright side, at least Vim behaves better not knowing about mksh/pdksh than it does not knowing about fish. :) fish users get caught by much more subtle (and annoying) issues until they find out they have to "set shell=/bin/sh" (or some other shell Vim knows how to handle). -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: [patch] filetype.vim

2011-04-08 Fir de Conversatie James Vega
though. That's being caused by Debian's system-wide config. Thanks for pointing that out. I've filed a bug with this message and I look into fixing it for the next package upload I do. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: Cream without cream 7.3.138 gives errors with Diff

2011-03-21 Fir de Conversatie James Vega
On Mon, Mar 21, 2011 at 08:24:05PM -0400, Steve Hall wrote: > On Fri, 2011-03-18 at 18:35 -0400, James Vega wrote: > > > > The default vimrc is no vimrc. > > ...except on Windows... That's an implementation detail of the installer which can be disabled by the user.

Re: Cream without cream 7.3.138 gives errors with Diff

2011-03-18 Fir de Conversatie James Vega
The first line explains how to rename > the file to "activate" it. Something similar to <http://vim.wikia.com/wiki/Example_vimrc>, but with more settings commented out? -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: [PATCH] First pass at Freedesktop directories

2011-03-18 Fir de Conversatie James Vega
7;t set. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: Yank to "+ also yanks to "* when suppressing "a" in guioptions in unix

2011-03-17 Fir de Conversatie James Vega
+'s content when both "unnamed" and "unnamedplus" are present in 'clipboard' and 'guioptions' doesn't contain "a". The attached patch should implement that behavior. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega diff --git a/sr

Re: Question to vim73 after compilaton

2011-03-12 Fir de Conversatie James Vega
has open and immediately has close. This is a known bug introduced by patch 7.3.137. See previous discussions[0][1] on the list. [0]: http://article.gmane.org/gmane.editors.vim.devel/29917 [1]: http://article.gmane.org/gmane.editors.vim.devel/29992 -- James GPG Key: 1024D/61326D40 2003-09-02 J

Re: [PATCH] foldexpr for help files

2011-03-11 Fir de Conversatie James Vega
tion. Folding is actually enabled by default. The only saving grace for not completely confusing new users is that 'foldmethod'/'foldexpr' are typically set by ftplugins (or syntax files for syntax-based folding). Of course, those are commonly the first things that get enabled. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: Re: Spelling support doesn’t deal with ‘’’ correctly

2011-03-08 Fir de Conversatie James Vega
g library, if the effort is going to be taken to use something other than Vim's internal spell-checking. I've done some work in a local branch to integrate Enchant, but ran into some larger questions that need to be addressed and haven't had time to draft a reasonable email about them yet. [0]: http://www.abisource.com/projects/enchant/ -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega -- You received this message from the "vim_dev" 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

Re: Why does vim link with selinux?

2011-03-08 Fir de Conversatie James Vega
Nope; "vim --version" reports "-lselinux" Are you sure you're using the version that you built with --disable-selinux? That flag works fine for me. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega -- You received this message from the "vim_dev" maill

Re: [BUG] getpos("'>") returns wrong column number

2011-03-08 Fir de Conversatie James Vega
length changes. Some of its uses are purely internal, but it does have external visibility in the case of commands like getpos(). -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega -- You received this message from the "vim_dev" 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

Re: Why does vim link with selinux?

2011-03-08 Fir de Conversatie James Vega
ldd to test that, then that's the problem. ldd reports all recursive library dependencies. "objdump -p vim | grep NEEDED" will show what the Vim binary directly requires. It's likely that some library which is a direct dependency (or one of their dependencies) is linked again

Re: Issues with gnupg.vim - plaintext leakage, file trashing

2011-03-07 Fir de Conversatie James Vega
On Wed, Feb 23, 2011 at 04:53:40PM -0800, AndrewDaviel wrote: > On Feb 22, 8:49 pm, James Vega wrote: > > > When writing out a modified encrypted file, the plaintext is still > > > saved in "4" in the temporary directory, although the ciphertext is > > > no

Re: Feature suggestion: option for letting spaces match newlines in search

2011-03-06 Fir de Conversatie James Vega
ot : command lines. [0]: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=256743#12 [1]: http://thread.gmane.org/gmane.editors.vim.devel/11964 -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: Undo bug?

2011-03-05 Fir de Conversatie James Vega
t; instead of the original text I'd yanked. Then you should have been putting from register 0 instead of register ". Register 0 is the last yank, while register " is the last yank or delete. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: Issues with gnupg.vim - plaintext leakage, file trashing

2011-02-22 Fir de Conversatie James Vega
On Tue, Feb 22, 2011 at 01:29:59PM -0800, AndrewDaviel wrote: > > On Feb 21, 10:43 pm, James Vega wrote: > > > I've attached an updated version of the plugin that I sent to Markus a > > while back which I think addresses these problems.  I've described below &

Re: Issues with gnupg.vim - plaintext leakage, file trashing

2011-02-21 Fir de Conversatie James Vega
rashed. This is similar to the above scenario. Gnupg will return an error code, which the plugin will now notice and prevent the original file from being overwritten. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega " Name:gnupg.vim " Version: $Id: gnupg.vim 3051 2010-02-16 07

Re: Bug? v:count1 is set to 0

2011-02-18 Fir de Conversatie James Vega
he situation again and report back. At least from my experimentation, it seems to be related to -c/-S. ":echo v:count1" works fine when run interactively, but not via -c. Similarly, vim -c 'if v:count1 == 1 | echom "1 is 1" | else | echom "1 is 0" | endif'

Re: Launchpad bug #137854 in vim

2011-02-17 Fir de Conversatie James Vega
nmaximize __ARGS((void)); > > +void gui_mch_newfont __ARGS((void)); > > void gui_mch_set_shellsize __ARGS((int width, int height, int min_width, > > int min_height, int base_width, int > > base_height, int direction)); > > void gui_mch_get_screen_dimensions __ARGS((int *screen_w, int *screen_h)); > > void gui_mch_settitle __ARGS((char_u *title, char_u *icon)); > > Please try out this patch. Resizing has always been a problem with GTK, > this needs to be tried out in various configurations. I don't have a > vertical monitor setup. I haven't seen any further status on this. Has anyone with setups like Yukihiro described verified whether the patch works properly? -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: vim 7.3 configure fails to detect missing libiconv on SunOS 5.10

2011-02-10 Fir de Conversatie James Vega
configure to try and run the program, but that's generally to be avoided since it inhibits cross-compiling. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: tr() problem ?

2011-02-10 Fir de Conversatie James Vega
On Wed, Feb 9, 2011 at 2:10 PM, James Vega wrote: > On Wed, Feb 9, 2011 at 12:04 PM, Dimitar DIMITROV wrote: >> But this doesn't: >> >> command! Translate call setline(line('.'), tr(getline('.'), >>    \'ABVGDEWZI

Re: tr() problem ?

2011-02-09 Fir de Conversatie James Vega
sion: \'рX') Everything works fine if the command is defined using "\u0440" instead of the literal character. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega -- You received this message from the "vim_dev" 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

Re: Hex viewer/editor with vim

2011-02-08 Fir de Conversatie James Vega
;since all the xxd offsets number need to be renumbered. > > Maybe you don't need to reinvent the wheel: see :help hex-editing He addressed that in the first paragraph. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: ctrl-o with a mapping

2011-02-05 Fir de Conversatie James Vega
fontname()q > > i@a > > > > This does not insert the :echo getfontname(), it does exactly as is > > done in normal mode. This makes sense. lets you execute one normal mode command. In this case that command is @a. > > However, > > > > :nnoremap 0:ech

Re: Unexpected behavior loading cp1252 file as latin1

2011-01-28 Fir de Conversatie James Vega
ve a minimal set of steps along with the output that you're seeing for ":set enc? fenc? fencs?" in each of the different cases? -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega -- You received this message from the "vim_dev" 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

Re: Bug or a feature? Appending in visual block mode

2011-01-20 Fir de Conversatie James Vega
ing that the cursor's column before pressing A is at the EOL and should stay at the EOL since 'virtualedit' isn't set. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega -- You received this message from the "vim_dev" 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

Re: tab buffer

2011-01-10 Fir de Conversatie James Vega
x27; to > open new tabs whenever {cmd} opens a new window. `:buffer' command does not > open any windows. To expand on ZyX's response, you would want to use ":tab split +bn" for the behavior you want. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: Some documentation bugs and wishes

2011-01-04 Fir de Conversatie James Vega
t an argument). -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: Patch 7.3.083

2010-12-17 Fir de Conversatie James Vega
On Fri, Dec 17, 2010 at 12:56 PM, Patrick Texier wrote: > On Fri, 17 Dec 2010 12:30:01 -0500, James Vega wrote: > >> > Let me know if there are still problems after patch 7.3.085. > >> That doesn't fix the EINTR definition problem.  My earlier patch works, >> b

Re: Patch 7.3.083

2010-12-17 Fir de Conversatie James Vega
if there are still problems after patch 7.3.085. That doesn't fix the EINTR definition problem. My earlier patch works, but maybe it makes sense to move the include of errno.h out of the os_(win*|mswin).c files altogether and into vimio.h? -- James GPG Key: 1024D/61326D40 2003-09-02 Jame

Re: Patch 7.3.083

2010-12-17 Fir de Conversatie James Vega
leio.c(10348) : error C2059: syntax error : '}' > fileio.c(10348) : error C2014: preprocessor command must start as first > nonwhite space > fileio.c(10350) : fatal error C1070: mismatched #if/#endif pair in file > 'h:\vim\vim\src\fileio.c' > > A quick look sho

Re: how to create tags file for vim source code ?

2010-12-13 Fir de Conversatie James Vega
t; That the message refers to omni completion and not to tags would > suggest that you used the wrong command to try to find the tag. He's not trying to find the tag. He's trying to use omni-completion to complete "curbuf->". That being said, I built the tags file

Re: SIGWINCH causes problems when editing stdin

2010-12-08 Fir de Conversatie James Vega
itly: If a read() is interrupted by a signal before it reads any data, it shall return -1 with errno set to [EINTR]. If a read() is interrupted by a signal after it has successfully read some data, it shall return the number of bytes read. [0]: http://www.opengroup.org/onlinepubs/009695399/functions/read.html -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega -- You received this message from the "vim_dev" 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

Re: Bug in clipboard support with multibyte charactors?

2010-12-04 Fir de Conversatie James Vega
the copied text from the asserting application. You can also use a more manual tool like xclip to achieve the same effect. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: Regex \%V question

2010-11-22 Fir de Conversatie James Vega
On Mon, Nov 22, 2010 at 1:09 PM, James Vega wrote: > On Thu, Nov 18, 2010 at 6:07 PM, Christian Brabandt > wrote: >> Here is another patch, including a basic test, that should address all >> the issues. I couldn't reproduce the highlighting problem, though. This >>

Re: Regex \%V question

2010-11-22 Fir de Conversatie James Vega
On Thu, Nov 18, 2010 at 6:07 PM, Christian Brabandt wrote: > Hi James! > > On Mo, 08 Nov 2010, James Vega wrote: > >> On Mon, Nov 8, 2010 at 3:34 PM, Christian Brabandt >> wrote: >> > On Fr, 05 Nov 2010, Benjamin R. Haskell wrote: >> >> Removing the

Re: Small indent/perl.vim patch concerning bad match patterns

2010-11-18 Fir de Conversatie James Vega
On Thu, Nov 18, 2010 at 10:43 AM, ZyX wrote: > Reply to message «Re: Small indent/perl.vim patch concerning bad match > patterns», > sent 15:44:46 18 November 2010, Thursday > by James Vega: > >> Since when is people not following documented behavior a reason to >> ch

Re: Small indent/perl.vim patch concerning bad match patterns

2010-11-18 Fir de Conversatie James Vega
cluded in the above list. It looks like it is Vim who should be > fixed, > not perl syntax file. Since when is people not following documented behavior a reason to change the tool? I'd be more understanding if Vim didn't explicitly outline the escape sequences it does allow inside a collection. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: saveas -> loads ft plugin -> changes dir -> wrong filename problem

2010-11-16 Fir de Conversatie James Vega
it, although I'm wary of the strcpy since I'm not sure we can guarantee there's enough space for the copy. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega -- You received this message from the "vim_dev" 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 vim.out Description: Binary data saveas.diff Description: Binary data

Re: Completion is painfully slow in Vim 7.3

2010-11-16 Fir de Conversatie James Vega
're experiencing likely started with 7.2.274. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega -- You received this message from the "vim_dev" 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

Re: using shellslash on windows.

2010-11-15 Fir de Conversatie James Vega
-- James GPG Key: 1024D/61326D40 2003-09-02 James Vega -- You received this message from the "vim_dev" 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

Re: [BUG] autoload variables are not available inside autoload functions

2010-11-14 Fir de Conversatie James Vega
hat it requires you to prepend > the "g:" prefix (untested): That's not a bug. The default scope inside a function is l: so if you need to access some other scope, you have to use the proper prefix. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: Patch 7.3.051

2010-11-11 Fir de Conversatie James Vega
fore pushing the commits to a public repository or where the public branch/repository is specifically being used with history editing in mind. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: make hitting enter work like OK button for gtk inputdialog()

2010-11-11 Fir de Conversatie James Vega
k nits > I'd like to pick. http://library.gnome.org/devel/gtk/stable/ -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: Patch 7.3.050

2010-11-10 Fir de Conversatie James Vega
tion which splits the terminfo library out to its own file. I wonder how common that is and whether all the distributions which build with the split libraries use the same name. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega -- You received this message from the "vim_dev" mail

Re: Null reference when $PATH is empty.

2010-11-09 Fir de Conversatie James Vega
is change (which should have included an == NULL check), why not add a != NULL check in the following for loop? Attached patch includes that update. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega diff --git a/src/ex_getln.c b/src/ex_getln.c --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -475

Re: Regex \%V question

2010-11-08 Fir de Conversatie James Vega
e if it's related, but the patch also introduces this warning: regexp.c: In function ‘regtry’: regexp.c:3741: warning: comparison between pointer and integer -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega -- You received this message from the "vim_dev" 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

Re: [patch] Py_SetPythonHome for python3 to make import work

2010-11-07 Fir de Conversatie James Vega
On Sun, Nov 07, 2010 at 01:53:05PM -0500, James Vega wrote: > On Sun, Nov 07, 2010 at 06:04:35PM +0200, Roland Puntaier wrote: > > The attached patch calls Py_SetPythonHome with PYTHON3_PREFIX > > defined by configure. > > This solves the problem. > > This does make

Re: [patch] Py_SetPythonHome for python3 to make import work

2010-11-07 Fir de Conversatie James Vega
orting people who have installed Python outside of the standard paths, though. This should probably be done for Python2.x as well. [0]: http://packages.ubuntu.com/maverick/i386/python3.1/filelist [1]: http://www.pathname.com/fhs/pub/fhs-2.3.html#USRLOCALLOCALHIERARCHY -- James GPG Key: 1024D/61326

[patch] Skip flagging error when error not displayed

2010-11-04 Fir de Conversatie James Vega
uot;suppressing error messages" to the top of emsg(). This provides the more intuitive behavior of only flagging an error when a message was actually displayed to the user. Thanks, -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega diff --git a/src/message.c b/src/message.c --- a/s

Re: getchar.c fails to compile

2010-11-03 Fir de Conversatie James Vega
e using patched sources and there's something wrong with the patching. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: ilist fails in a xml fails (thinks whole file is a comment)

2010-11-01 Fir de Conversatie James Vega
g to show up with :ilist but are only showing up with :ilist! are ones that have leading whitespace. > Could anyone else confirm this is a bug or is there something weird in > my setup? This sounds like something that could be improved in Vim. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: Patch 7.3.043

2010-10-27 Fir de Conversatie James Vega
What to change in order to make it work again? Update to 7.3.046. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega -- You received this message from the "vim_dev" 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

Re: 7.3 unable to load ruby 1.9.2?

2010-10-21 Fir de Conversatie James Vega
James GPG Key: 1024D/61326D40 2003-09-02 James Vega -- You received this message from the "vim_dev" 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 dynamic-ruby.diff Description: Binary data

Re: Patch 7.3.031

2010-10-21 Fir de Conversatie James Vega
ing or when running in a terminal and Vim connects to the X server (|-X|) this will be set to the window ID. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega -- You received this message from the "vim_dev" 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

Re: [patch] Let helpztags support for other languages

2010-10-14 Fir de Conversatie James Vega
ened a bug for you in the BTS to make sure I keep track of the patch. > so I run it to some of my plugins. > but helpztags only supports for .txt help file. > so I wrote the patch to fix it. Thanks. Looks useful. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega --- helpztags.bak

Re: [Bug Report] After saving a new file, the value of "fileencoding" does not change

2010-10-10 Fir de Conversatie James Vega
. If you want to actually change the encoding of the buffer and affect the encoding used when writing out the file, then ":set fileencoding=...". -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: I seem to meet a clipboard bug related with unicode

2010-09-28 Fir de Conversatie James Vega
leave the initial gvim open while you paste b) run a clipboard manager which, when it sees an application assert ownership of the clipboard, requests the contents from the application so that it can store it after the application quits c) see if Bram will accept a patch to add an option which disa

Re: I seem to meet a clipboard bug related with unicode

2010-09-27 Fir de Conversatie James Vega
o work. The way X11's selections work, the client that owns the text being copied is expected to be running so it can respond to any paste requests. If you need to paste, either leave the client (Vim) open or run a clipboard manager so it will store the text between the copy, closing Vim, and pasting to something else. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: [PATCH] link.sh: do not reduce library if linker supports --as-needed

2010-08-31 Fir de Conversatie James Vega
On Tue, Aug 31, 2010 at 8:30 AM, Kirill A. Shutemov wrote: > On Wed, Aug 25, 2010 at 07:28:04AM -0400, James Vega wrote: >> On Wed, Aug 25, 2010 at 12:20:56PM +0300, Kirill A. Shutemov wrote: >> > On Mon, Aug 23, 2010 at 03:44:12PM +0300, Kirill A. Shutemov wrote: >> &g

Re: [PATCH] link.sh: do not reduce library if linker supports --as-needed

2010-08-25 Fir de Conversatie James Vega
> at linker level. Let's use it. > > Any comments? Simply as a data point, I've been building Debian's Vim packages with -Wl,--as-needed for ~2.5 years now so I'd be interested in having this functionality done automatically when the proper tools are present. -- Jame

Re: Documentation update needed

2010-08-24 Fir de Conversatie James Vega
rlier {N}f and :later {N}f commands? See Christian Brabandt's suggested patch in the "[patch] document undolist save column" email from today. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: Plans for Mercurial branches?

2010-08-18 Fir de Conversatie James Vega
On Wed, Aug 18, 2010 at 8:49 AM, Xavier de Gaye wrote: > On Wed, Aug 18, 2010 at 2:01 PM, James Vega wrote: >> On Tue, Aug 17, 2010 at 11:26:36PM +0200, Bram Moolenaar wrote: >>> I think what would normally happen is to merge the development branch >>> back into the def

Re: Plans for Mercurial branches?

2010-08-18 Fir de Conversatie James Vega
it make sense to mark the spurious vim head as closed so it doesn't show up in the default view? -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: RFC: use hunspell dictionaries

2010-08-15 Fir de Conversatie James Vega
uages due to being able to use different spell-checkers for different languages. [0]: http://www.abisource.com/projects/enchant/ -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

Re: Vim 7.3f: :r fails when 'compatible'

2010-08-14 Fir de Conversatie James Vega
On Sat, Aug 14, 2010 at 05:42:21PM +0200, Tony Mechelynck wrote: > On 14/08/10 17:13, James Vega wrote: > >That fixes the error message, but not the issue with the other buffer > >that I mentioned. > > > > $ printf "foo\n"> mary > > $ vim -u NON

Re: Vim 7.3f: :r fails when 'compatible'

2010-08-14 Fir de Conversatie James Vega
essage, but not the issue with the other buffer that I mentioned. $ printf "foo\n" > mary $ vim -u NONE -i NONE existingfile :r mary :ls! 1 %a + "existingfile" line 2 2u#"mary" line 1 $ vim -u NONE -i NON

Re: Vim 7.3f: :r fails when 'compatible'

2010-08-13 Fir de Conversatie James Vega
mpatible', but you end up with the following buffers: :ls! 1 %a + "[No Name]"line 1 2u#"mary" line 1 Buffer 1 contains a blank line and then the contents of mary below it (as expected after a :read command). While buffer 2

Re: Vim 7.3: Python3 support

2010-08-11 Fir de Conversatie James Vega
> RTLD_GLOBAL but disallow using both python commands. Attached is a configure check that determines if RTLD_GLOBAL is needed, when building with dynamic python. If so, it enables the "only one Python interface can be used per session" code. -- James GPG Key: 1024D/61326D40 2003-09-

Re: ex program inserts null char for newline upon insert/append of backslash newline

2010-08-11 Fir de Conversatie James Vega
ertain patches bad. That's probably due to some of the patches only applying to the "extra" tarball, which contains sources for non-unix systems and other non-essential code. If they're not using the extra tarball, then they have no need to apply the patches for it. -- James GPG

Re: test73 fails with shells that don't support '**'

2010-08-10 Fir de Conversatie James Vega
On Mon, Aug 09, 2010 at 07:37:13PM -0400, James Vega wrote: > On Sun, Aug 08, 2010 at 11:12:01PM -0400, James Vega wrote: > > On Mon, Aug 09, 2010 at 09:28:01AM +0800, Nazri Ramliy wrote: > > > I stumbled into this problem (works fine in my environment, but fails in > > &

Re: test73 fails with shells that don't support '**'

2010-08-09 Fir de Conversatie James Vega
On Sun, Aug 08, 2010 at 11:12:01PM -0400, James Vega wrote: > On Mon, Aug 09, 2010 at 09:28:01AM +0800, Nazri Ramliy wrote: > > I stumbled into this problem (works fine in my environment, but fails in > > /bin/dash) when I first attempted to write test73. > > > > At tha

[patch] Remove shadowdir symlinks in clean

2010-08-09 Fir de Conversatie James Vega
If a shadowdir is used for building, symlinks for the runtime and pixmaps directory are created in src/ but they aren't removed by the clean target. Attached patch removes them. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega -- You received this message from the "vim_dev

Re: Vim 7.3: Python3 support

2010-08-09 Fir de Conversatie James Vega
suggest a configure-time check to determine whether it's possible to load one of the lib-dynload modules without RTLD_GLOBAL set. Simply deciding not to use RTLD_GLOBAL because both Python versions have been chosen means that neither will work on systems where the lib-dynload modules aren'

Re: Vim 7.3: Python3 support

2010-08-09 Fir de Conversatie James Vega
s flag was added to make "import termios" work. > Or something like that. Right. It's needed to be able to load any of the C extensions on systems where they aren't linked to libpython. I know this is the case on Debian-based systems. -- James GPG Key: 1024D/61326D40 2003-09-02 James Vega signature.asc Description: Digital signature

  1   2   3   4   >