User login

Drush command to output variable_set statements for given variables

Drush in vim:

http://zurb.com/forrst/posts/Import_Drupal_variables_into_variable_set_call-z89

" Pulls in Drupal variables (from Drush) and outputs variable_set() calls for
" each variable.
" Todo: Should probably check to see if drush can bootstrap
function! s:DrushVariableGet(args)
exec "normal o"
exec "r !drush variable-get --pipe " . a:args . " | sed 's/$variables\[\(.\)\] = /variable_set(\1, /' | sed 's/;$/);/'"
exec "normal ={"
endfunction
command! -bang -nargs=
-complete=file Dvar call s:DrushVariableGet()

vi ~/.vimrc
:set paste
and then paste that in.

See also:
http://drupal.stackexchange.com/questions/78919/export-set-variables-from-site-to-include-in-install-profile

These resources do not tell you to put your function in your .vimrc:
http://vim.wikia.com/wiki/Write_your_own_Vim_function
http://www.ibm.com/developerworks/library/l-vim-script-2/index.html

Had to get that from here:
http://stackoverflow.com/questions/8571121/trying-to-create-custom-vim-functions

Searched words: 
drush command output variable_set for variable vim vget

Comments

Post new comment

The content of this field is kept private and will not be shown publicly.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.
  • You can use Markdown syntax to format and style the text. Also see Markdown Extra for tables, footnotes, and more.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <img> <blockquote> <small> <h2> <h3> <h4> <h5> <h6> <sub> <sup> <p> <br> <strike> <table> <tr> <td> <thead> <th> <tbody> <tt> <output>
  • Lines and paragraphs break automatically.

More information about formatting options

By submitting this form, you accept the Mollom privacy policy.