Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 Vim 脚本中获取用户环境的时区偏移量,并且它必须是可移植的(Unix/linux/MacOSX、Windows)。
例如,如果用户在夏天在巴黎,则其时区偏移当前为 +2 (UTC+2)。
可移植性问题不包括使用外部程序或非本地脚本引擎(Perl、Python、Ruby...)。
:echo strftime("%z")%z与格式说明符一样可移植。
:echo strftime("%z")
%z