Skip to content

Commit

Permalink
avoid accidentally removing space by using <SP>
Browse files Browse the repository at this point in the history
  • Loading branch information
wuputah authored and tmm1 committed Aug 14, 2010
1 parent 225d8cb commit 087579b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Rakefile
Expand Up @@ -109,13 +109,13 @@ end
vim_plugin_task "janus_themes" do
# custom version of railscasts theme
File.open(File.expand_path("../colors/railscasts+.vim", __FILE__), "w") do |file|
file.puts <<-VIM.gsub(/^ /, "")
file.puts <<-VIM.gsub(/^ +/, "").gsub("<SP>", " ")
runtime colors/railscasts.vim
let g:colors_name = "railscasts+"
set fillchars=vert:\\
set fillchars=stl:\\
set fillchars=stlnc:\\
set fillchars=vert:\\<SP>
set fillchars=stl:\\<SP>
set fillchars=stlnc:\\<SP>
hi StatusLine guibg=#cccccc guifg=#000000
hi VertSplit guibg=#dddddd
VIM
Expand Down

0 comments on commit 087579b

Please sign in to comment.