diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-05-09 14:52:41 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-05-09 14:52:41 +0200 |
commit | 691ddeefb545d8488e5a495af61caba2e57b3de9 (patch) | |
tree | 4fc05bf8d9ad408b60d1c127b541869ac0f5f8ed /runtime/doc/usr_41.txt | |
parent | 68cbb14bae1013702270b25e886b5ee09e07575a (diff) | |
download | vim-git-691ddeefb545d8488e5a495af61caba2e57b3de9.tar.gz |
patch 8.1.1305: there is no easy way to manipulate environment variablesv8.1.1305
Problem: There is no easy way to manipulate environment variables.
Solution: Add environ(), getenv() and setenv(). (Yasuhiro Matsumoto,
closes #2875)
Diffstat (limited to 'runtime/doc/usr_41.txt')
-rw-r--r-- | runtime/doc/usr_41.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/doc/usr_41.txt b/runtime/doc/usr_41.txt index f874b073b..f43edf81e 100644 --- a/runtime/doc/usr_41.txt +++ b/runtime/doc/usr_41.txt @@ -774,6 +774,9 @@ System functions and manipulation of files: rename() rename a file system() get the result of a shell command as a string systemlist() get the result of a shell command as a list + environ() get all environment variables + getenv() get one environment variable + setenv() set an environment variable hostname() name of the system readfile() read a file into a List of lines readdir() get a List of file names in a directory @@ -903,6 +906,7 @@ GUI: *gui-functions* getwinposy() Y position of the Vim window balloon_show() set the balloon content balloon_split() split a message for a balloon + balloon_gettext() get the text in the balloon Vim server: *server-functions* serverlist() return the list of server names |