class VimPrinter::Configuration

Attributes

options[RW]

Public Class Methods

new() click to toggle source
# File lib/vim_printer/configuration.rb, line 4
def initialize
  @options = {
    # see: :help :TOhtml from Vim for detail
    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'"
    ]
  }
end