comparison runtime/doc/ft_rust.txt @ 27903:d19b7aee1925

Update runtime files. Commit: https://github.com/vim/vim/commit/c51cf0329809c7ae946c59d6f56699227efc9d1b Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 26 12:25:45 2022 +0000 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Sat, 26 Feb 2022 13:30:04 +0100
parents af69c9335223
children f8116058ca76
comparison
equal deleted inserted replaced
27902:8481c8908b5e 27903:d19b7aee1925
24 24
25 *g:rustc_path* 25 *g:rustc_path*
26 g:rustc_path~ 26 g:rustc_path~
27 Set this option to the path to rustc for use in the |:RustRun| and 27 Set this option to the path to rustc for use in the |:RustRun| and
28 |:RustExpand| commands. If unset, "rustc" will be located in $PATH: > 28 |:RustExpand| commands. If unset, "rustc" will be located in $PATH: >
29 let g:rustc_path = $HOME."/bin/rustc" 29 let g:rustc_path = $HOME .. "/bin/rustc"
30 < 30 <
31 31
32 *g:rustc_makeprg_no_percent* 32 *g:rustc_makeprg_no_percent*
33 g:rustc_makeprg_no_percent~ 33 g:rustc_makeprg_no_percent~
34 Set this option to 1 to have 'makeprg' default to "rustc" instead of 34 Set this option to 1 to have 'makeprg' default to "rustc" instead of
85 85
86 *g:ftplugin_rust_source_path* 86 *g:ftplugin_rust_source_path*
87 g:ftplugin_rust_source_path~ 87 g:ftplugin_rust_source_path~
88 Set this option to a path that should be prepended to 'path' for Rust 88 Set this option to a path that should be prepended to 'path' for Rust
89 source files: > 89 source files: >
90 let g:ftplugin_rust_source_path = $HOME.'/dev/rust' 90 let g:ftplugin_rust_source_path = $HOME .. '/dev/rust'
91 < 91 <
92 92
93 *g:rustfmt_command* 93 *g:rustfmt_command*
94 g:rustfmt_command~ 94 g:rustfmt_command~
95 Set this option to the name of the 'rustfmt' executable in your $PATH. If 95 Set this option to the name of the 'rustfmt' executable in your $PATH. If