module VimPrinter

Constants

VERSION

Attributes

configuration[RW]

Public Class Methods

configure() { |configuration| ... } click to toggle source
# File lib/vim_printer/configuration.rb, line 22
def configure
  yield configuration
end
update_config() click to toggle source
# File lib/vim_printer/config/vim_printer.rb, line 3
def update_config
  VimPrinter.configure do |config|
    config.options[:html] = [
      "-c 'let g:html_expand_tabs = 1'",
      "-c 'let g:html_use_css = 1'",
      "-c 'let g:html_no_progress = 1'",
      "-c 'let g:html_number_lines = 0'",
      "-c 'let g:html_use_xhtml = 1'",
      "-c 'let g:html_ignore_folding = 1'"
    ]
  end
end