mirror of
https://github.com/neovim/neovim.git
synced 2026-08-22 15:21:08 +00:00
Move files from src/ to src/nvim/. - src/nvim/ becomes the new root dir for nvim executable sources. - src/libnvim/ is planned to become root dir of the neovim library.
20 lines
586 B
VimL
20 lines
586 B
VimL
" Vim script to cleanup a .po file:
|
|
" - Remove line numbers (avoids that diffs are messy).
|
|
" - Comment-out fuzzy and empty messages.
|
|
" - Make sure there is a space before the string (required for Solaris).
|
|
" Requires Vim 6.0 or later (because of multi-line search patterns).
|
|
|
|
" Disable diff mode, because it makes this very slow
|
|
let s:was_diff = &diff
|
|
setl nodiff
|
|
|
|
silent g/^#: /d
|
|
silent g/^#, fuzzy\(, .*\)\=\nmsgid ""\@!/.+1,/^$/-1s/^/#\~ /
|
|
silent g/^msgstr"/s//msgstr "/
|
|
silent g/^msgid"/s//msgid "/
|
|
silent g/^msgstr ""\(\n"\)\@!/?^msgid?,.s/^/#\~ /
|
|
|
|
if s:was_diff
|
|
setl diff
|
|
endif
|