diff options
author | Ethan Schoonover <es@ethanschoonover.com> | 2011-04-10 00:10:24 -0700 |
---|---|---|
committer | Ethan Schoonover <es@ethanschoonover.com> | 2011-04-10 00:10:24 -0700 |
commit | 4727d3afd6ac9278e4e5dcee6762ed8bb3501eef (patch) | |
tree | 4addb04bf96ec07164c266ef74079b22ab94a0d8 | |
parent | c669333929b35d01deb3bdaaf655357b8921a0a3 (diff) | |
download | vim-colors-solarized-4727d3afd6ac9278e4e5dcee6762ed8bb3501eef.tar.gz |
[vim] removed quote in autocommand - solarized
-rw-r--r-- | colors/solarized.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/colors/solarized.vim b/colors/solarized.vim index 0df0e00..57d2e15 100644 --- a/colors/solarized.vim +++ b/colors/solarized.vim @@ -4,7 +4,7 @@ " (see this url for latest release & screenshots) " License: OSI approved MIT license (see end of this file) " Created: In the middle of the night -" Modified: 2011 Apr 09 +" Modified: 2011 Apr 10 " " Usage "{{{ " @@ -940,7 +940,7 @@ hi! link pandocMetadataTitle pandocMetadata " mode (detected with the script scope s:vmode variable). It also allows for " other potential terminal customizations that might make gui mode suboptimal. " -autocmd GUIEnter * if (s:vmode != "gui") | exe "colorscheme " . g:colors_name "| endif +autocmd GUIEnter * if (s:vmode != "gui") | exe "colorscheme " . g:colors_name | endif "}}} " License "{{{ " --------------------------------------------------------------------- |