http://liulang.is-programmer.com/posts/329.html
2010-05-02 17:11
正确的解决方法请参考这个:http://liulang.is-programmer.com/posts/329.html 输 入locale查看到的是 LOCALE="zh_CN.utf8"<br style="line-height: normal;" />LANG="zh_CN.utf8"<table style="table-layout: auto; line-height: normal; border-collapse: collapse;" border="1" cellspacing="0" cellpadding="0" width="95%" bgcolor="#f1f1f1" bordercolor="#999999"><tbody style="line-height: normal;"></tbody></table><br style="line-height: normal;" />上面的是不标准的写法。标 准的写法应该是:zh_CN.UTF-8 export LANG='zh_CN.UTF-8' 后马上 恢复正常可以显示菜单。 之前的解决办法(不修改系统的locale设置): 今天在arch linux上装了gvim,发现打开之后看不到菜单文字,上网搜索到以下解决方法,经测试,问题解决了: 参考:http://superxgz.javaeye.com/blog/81161 在 当前用户下新建一个.gvimrc文件,内容为 set encoding=utf8 set langmenu=zh_CN.UTF-8 set imcmdline source $VIMRUNTIME/delmenu.vim source $VIMRUNTIME/menu.vim
export LANG='zh_CN.UTF-8' |