I'm trying to make a code pretty printer filter (e.g. perltidy) accept arbitrary options depending on vim variables. My goal is to pass project specific options to an external command used as a filter (:!) in visual mode.

The following expresses my intention (the last line is problematic):

" set b:perltidy_options based on dirname of the currently edited file
function! SetProjectVars()
  if match(expand("%:p:h"), "/project-foo/") >= 0
    let b:perltidy_options = "--profile=$HOME/.perltidyrc-foo --quiet"
  elseif match(expand("%:p:h"), "/project-bar/") >= 0
    let b:perltidy_options = "--profile=$HOME/.perltidyrc-bar --quiet"
  else
    let b:perltidy_options = "--quiet"
  endif
endfunction

" first set the project specific stuff
autocmd BufRead,BufNewFile * call SetProjectVars()

" then use it
vnoremap ,t :execute "!perltidy " . b:perltidy_options<Enter>

However, the last line (vnoremap) is an error in vim, because it expands to:

:'<,'>execute "!perltidy " . b:perltidy_options

and the execute command cannot accept a range. But I'd like to have this:

:execute "'<,'>!perltidy " . b:perltidy_options

How can I do this?

p.s. My perltidy is configured to act like a unix filter and I use vim 7.3.

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

You can use <C-\>e and getcmdline() to preserve command-line contents:

vnoremap ,t :<C-\>e'execute '.string(getcmdline()).'."!perltidy " . b:perltidy_options'<CR><CR>

, but in this case I would suggest simpler <C-r>= which purges out the need for :execute:

vnoremap ,t :!perltidy <C-r>=b:perltidy_options<CR><CR>
link|improve this answer
feedback

If you ever want to get rid of a range in command (ex) mode, CRL-u will do just that.

vnoremap ,t :execute "!perltidy " . b:perltidy_options<Enter>

becomes

vnoremap ,t :<C-u>execute "!perltidy " . b:perltidy_options<CR>

:h c_CTRL-u

Happy vimming,

-Luke

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.