diff options
author | cathook <b01902109@csie.ntu.edu.tw> | 2014-11-14 08:35:49 +0800 |
---|---|---|
committer | cathook <b01902109@csie.ntu.edu.tw> | 2014-11-14 08:35:49 +0800 |
commit | 3d44f17459f1a55f4102dbe27000dd92de82bea3 (patch) | |
tree | a1e8715196a0d7935ed47d800c809b7d1e8a43fc | |
parent | 4776adcef3ad39d6cb272a506c0129643067d156 (diff) | |
download | vim-shrvim-3d44f17459f1a55f4102dbe27000dd92de82bea3.tar vim-shrvim-3d44f17459f1a55f4102dbe27000dd92de82bea3.tar.gz vim-shrvim-3d44f17459f1a55f4102dbe27000dd92de82bea3.tar.bz2 vim-shrvim-3d44f17459f1a55f4102dbe27000dd92de82bea3.tar.lz vim-shrvim-3d44f17459f1a55f4102dbe27000dd92de82bea3.tar.xz vim-shrvim-3d44f17459f1a55f4102dbe27000dd92de82bea3.tar.zst vim-shrvim-3d44f17459f1a55f4102dbe27000dd92de82bea3.zip |
fix a little bug
-rw-r--r-- | vim/plugin/shared_vim.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/plugin/shared_vim.vim b/vim/plugin/shared_vim.vim index 8c7ec19..085908f 100644 --- a/vim/plugin/shared_vim.vim +++ b/vim/plugin/shared_vim.vim @@ -621,7 +621,7 @@ class VimInfoMeta(type): bvar = VimVarInfo(SimpleVimVars('b:')) cursors = VimCursorsInfo() highlight = VimHighlightInfo() - ENCODING = vim.options['encoding'] + ENCODING = vim_options['encoding'] def __init__(self, *args): """Constructor.""" |