vim_dev [email protected] http://groups.google.com/group/vim_dev?hl=en
Today's most active topics: * Scoping in nested functions: How should it work? - 7 new http://groups.google.com/group/vim_dev/t/4381917e31319324?hl=en * Bug in @{reg} together with g...@? - 6 new http://groups.google.com/group/vim_dev/t/da43e2f63d886478?hl=en * Bug with ) - 4 new http://groups.google.com/group/vim_dev/t/34f5ab59bea81af3?hl=en * '**2' item works in findfile() but not in globpath() - 2 new http://groups.google.com/group/vim_dev/t/881a0f78e35e4232?hl=en * Repost: [PATCH] Enable cross-compiling - 2 new http://groups.google.com/group/vim_dev/t/62a632a16e1ecbc2?hl=en Active Topics ------------- Bug in @{reg} together with g...@? - 6 new --------------------------------------- I have the following mapping: map g: <Esc>:set operatorfunc=<SID>get_command_ mode_range<CR>g@ and have recorded g:}j^M into register 'a'. Running @a now does nothing. Why? (It should run :join from the current line to the end of the current paragraph.) - Tues, Jan 8 2008 8:57 am 6 messages , 4 authors http://groups.google.com/group/vim_dev/t/da43e2f63d886478?hl=en Scoping in nested functions: How should it work? - 7 new -------------------------------------------------------- I'm exploring functional programming with vimL and immediately ran into seemingly counter-intuitive behavior: ------------------------------ ------ function! Outer() let outer_var = 0 function! Inner() let outer_var += 1 endfunction call Inner() echo outer_var - Tues, Jan 8 2008 1:00 pm 7 messages , 4 authors http://groups.google.com/group/vim_dev/t/4381917e31319324?hl=en Bug with ) - 4 new ------------------ An easy way to reproduce this bug: $ echo y > y $ vim -u NONE y "y" 1 line, 2 characters Then type ) and the cursor moves one position to the right, although there's nothing there! Vim 7.1 - Included patches: 1-2, 4-6, 8-12 - on Fedora 7. Adri - Tues, Jan 8 2008 2:59 pm 4 messages , 3 authors http://groups.google.com/group/vim_dev/t/34f5ab59bea81af3?hl=en '**2' item works in findfile() but not in globpath() - 2 new ------------------------------------------------------------ I like using the '**' wildcard in commands which search for files. I REALLY like adding a digit to the end of it to limit how far it digs. I wish it could work with the globpath() function. From editing.txt, line 1471: "The file searching is currently used for the 'path', 'cdpath' and 'tags' options, for | finddir()| and |findfile()|." - Tues, Jan 8 2008 3:40 pm 2 messages , 2 authors http://groups.google.com/group/vim_dev/t/881a0f78e35e4232?hl=en Patch 7.1.212 - 1 new --------------------- Patch 7.1.212 Problem: Accessing a byte before a line. Solution: Check that the column is 1 or more. (Dominuque Pelle) Files: src/edit.c *** ../vim-7.1. 211/src/edit.c Sun Jan 6 20:05:36 2008 --- src/edit.c Mon Jan 7 22:31:36 2008 * ************** *** 8452,8457 **** --- 8452,8458 ---- if ( mode == BACKSPACE_ CHAR - Wed, Jan 9 2008 1:14 am 1 message, 1 author http://groups.google.com/group/vim_dev/t/e322bf6efac139d7?hl=en Repost: [PATCH] Enable cross-compiling - 2 new ---------------------------------------------- Hi folks, a few weeks back I posted a patch that helps enabling cross- compiling by adding the necessary stuff in configure.in to tell "configure" the necessary values when cross-compiling. The patch also includes a README explaining everything. As people asked me about it I'd like to know if there's anything to fix in - Wed, Jan 9 2008 1:46 am 2 messages , 2 authors http://groups.google.com/group/vim_dev/t/62a632a16e1ecbc2?hl=en ============================================================================== You received this message because you are subscribed to the Google Groups "vim_dev" group. To post to this group, send email to [email protected] or visit http://groups.google.com/group/vim_dev?hl=en To unsubscribe from this group, send email to [email protected] To change the way you get mail from this group, visit: http://groups.google.com/group/vim_dev/subscribe?hl=en To report abuse, send email explaining the problem to [email protected] ============================================================================== Google Groups: http://groups.google.com?hl=en --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_dev" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
