How to use script attribute in map command?

2014-10-10 Thread Jiaxing Wang
This wiki page: http://vim.wikia.com/wiki/Mapping_keys_in_Vim_-_Tutorial_(Part_3) says with the following maps in a script file: nnoremap \x /Topic nmap script ,f \xCR In the second map command, ',f' is mapped to invoke \x which is replaced with '/Topic'. If the user or some other plugin

Re: How to use script attribute in map command?

2014-10-10 Thread glts
Hi, On Friday, October 10, 2014 12:04:17 PM UTC+2, jiaxing_wang wrote: This wiki page: http://vim.wikia.com/wiki/Mapping_keys_in_Vim_-_Tutorial_(Part_3) says with the following maps in a script file: nnoremap \x /Topic nmap script ,f \xCR In the second map command, ',f' is

Re: How to use script attribute in map command?

2014-10-10 Thread glts
On Friday, October 10, 2014 12:55:08 PM UTC+2, glts wrote: Hi, On Friday, October 10, 2014 12:04:17 PM UTC+2, jiaxing_wang wrote: This wiki page: http://vim.wikia.com/wiki/Mapping_keys_in_Vim_-_Tutorial_(Part_3) says with the following maps in a script file:

Re: How to use script attribute in map command?

2014-10-10 Thread Павлов Николай Александрович
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On October 10, 2014 2:55:08 PM GMT+03:00, glts 676c7...@gmail.com wrote: Hi, On Friday, October 10, 2014 12:04:17 PM UTC+2, jiaxing_wang wrote: This wiki page: http://vim.wikia.com/wiki/Mapping_keys_in_Vim_-_Tutorial_(Part_3) says with the

Maintainer wanted for config.vim syntax file

2014-10-10 Thread Bram Moolenaar
Issue 133 has a patch for the syntax file of autoconf scripts: https://code.google.com/p/vim/issues/detail?id=133 Unfortunately, the original maintainer cannot be reached, and the author of the patch doesn't want to take over maintenance. Can someone volunteer to take over maintenance of the

Building the quickfix window from VimL

2014-10-10 Thread David Fishburn
7.4.1-466 Windows 7 32 bit I have a plugin with formats some code. But in order to format it, it has to parse it. During the parsing, it can report errors. I want to basically open the quickfix window and give the usual output you would usually supply with a :make. So I create a new buffer.

Re: Building the quickfix window from VimL

2014-10-10 Thread Ben Fritz
On Friday, October 10, 2014 3:31:24 PM UTC-5, David Fishburn wrote: 7.4.1-466  Windows 7 32 bit I have a plugin with formats some code. But in order to format it, it has to parse it. During the parsing, it can report errors. I want to basically open the quickfix window and give

TextChanged triggered on save

2014-10-10 Thread William Gardner
I've got a plugin that registers an autocmd on TextChanged and uses the '[ and '] marks to act on the modified lines (trim trailing whitespace). There's a weird edge case that happens if you open a file and immediately save it. The save triggers TextChanged, and '[,'] defaults to 1,$. Here's a

Re: Building the quickfix window from VimL

2014-10-10 Thread LCD 47
On 10 October 2014, David Fishburn dfishburn@gmail.com wrote: 7.4.1-466 Windows 7 32 bit I have a plugin with formats some code. But in order to format it, it has to parse it. During the parsing, it can report errors. I want to basically open the quickfix window and give the usual

Re: TextChanged triggered on save

2014-10-10 Thread Christian Brabandt
(redir to vim-dev) On Fr, 10 Okt 2014, William Gardner wrote: I've got a plugin that registers an autocmd on TextChanged and uses the '[ and '] marks to act on the modified lines (trim trailing whitespace). There's a weird edge case that happens if you open a file and immediately save it.

Re: IncSearch not working in s/patt/repl/gc?

2014-10-10 Thread Ben Fritz
On Wednesday, June 11, 2014 2:11:17 PM UTC-5, Ben Fritz wrote: On Wednesday, June 11, 2014 12:51:52 PM UTC-5, Christian Brabandt wrote: Hi Benjamin! On Mi, 11 Jun 2014, Benjamin Fritz wrote: In gvim 7.4.292 64-bit, on 64-bit Windows 7, when I do a :','s/pattern/replacement/gc

is there a plugin for using Processing 2 with Vim 7.4

2014-10-10 Thread Bob Cressman
Simple question, but I find no answer anywhere...is there a plugin for using Processing 2 with Vim 7.4? Thanks! -- -- 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

Re:Re: How to use script attribute in map command?

2014-10-10 Thread Jiaxing Wang
At 2014-10-10 19:06:21, glts 676c7...@gmail.com wrote: On Friday, October 10, 2014 12:55:08 PM UTC+2, glts wrote: Hi, On Friday, October 10, 2014 12:04:17 PM UTC+2, jiaxing_wang wrote: This wiki page: http://vim.wikia.com/wiki/Mapping_keys_in_Vim_-_Tutorial_(Part_3) says