diff options
author | oni-link <knil.ino@gmail.com> | 2015-09-04 10:05:59 +0200 |
---|---|---|
committer | oni-link <knil.ino@gmail.com> | 2015-09-06 07:30:52 +0200 |
commit | 615e298a94fc9016a2f252aa9c474fe73bc55c1f (patch) | |
tree | 43a6aaa4f92866ff8991e9048ec86dafe13fef9d /runtime | |
parent | e2cbac7634b43320b9357c4adf5db3306f87b311 (diff) | |
download | rneovim-615e298a94fc9016a2f252aa9c474fe73bc55c1f.tar.gz rneovim-615e298a94fc9016a2f252aa9c474fe73bc55c1f.tar.bz2 rneovim-615e298a94fc9016a2f252aa9c474fe73bc55c1f.zip |
vim-patch:7.4.602
Problem: ":set" does not accept hex numbers as documented.
Solution: Use vim_str2nr(). (ZyX)
https://github.com/vim/vim/commit/18400e6430755c97eb7e31525ab4744502603731
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index f28e5b9515..1393b11824 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -58,9 +58,7 @@ achieve special effects. These options come in three forms: :se[t] {option}:{value} Set string or number option to {value}. For numeric options the value can be given in decimal, - hex (preceded with 0x) or octal (preceded with '0') - (hex and octal are only available for machines which - have the strtol() function). + hex (preceded with 0x) or octal (preceded with '0'). The old value can be inserted by typing 'wildchar' (by default this is a <Tab>). See |cmdline-completion|. White space between {option} and '=' is allowed and |