summaryrefslogtreecommitdiffstats
path: root/runtime/lang/menu_pt_br.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-05-01 21:14:34 +0200
committerBram Moolenaar <Bram@vim.org>2012-05-01 21:14:34 +0200
commit8071607aa5e6f4decd2c3ba0a41cf2b3498b6f1e (patch)
treeb89b0ce21c32df983ad6b857b3ac55188a0f58ed /runtime/lang/menu_pt_br.vim
parent2d0b92f8f9f765f2707a98a3493903f895c87c7f (diff)
More runtime file fixes for 'compatible' mode.
Diffstat (limited to 'runtime/lang/menu_pt_br.vim')
-rw-r--r--runtime/lang/menu_pt_br.vim7
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/lang/menu_pt_br.vim b/runtime/lang/menu_pt_br.vim
index 28a62b78dc..f4980ef5ac 100644
--- a/runtime/lang/menu_pt_br.vim
+++ b/runtime/lang/menu_pt_br.vim
@@ -1,6 +1,6 @@
" Menu Translations: Português do Brasil
" Maintainer: José de Paula <jose@infoviaweb.com>
-" Last Change: 2006-09-19 02:30:00-03:00
+" Last Change: 2012 May 01
"
" Quit when menu translations have already been done.
@@ -8,6 +8,8 @@ if exists("did_menu_trans")
finish
endif
let did_menu_trans = 1
+let s:keepcpo= &cpo
+set cpo&vim
" Translations in latin1 (ISO-8859-1), and should work in
" latin9 (ISO-8859-15)
@@ -283,3 +285,6 @@ menutrans &Convert\ to\ HTML &Converter\ para\ HTML
" Find Help dialog text
let g:menutrans_help_dialog = "Digite um comando ou palavra para obter ajuda;\n\nAnteponha i_ para comandos de entrada (ex.: i_CTRL-X)\nAnteponha c_ para comandos da linha de comandos (ex.: c_<Del>)\nAnteponha ` para um nome de opção (ex.: `shiftwidth`)"
+
+let &cpo = s:keepcpo
+unlet s:keepcpo