comparison runtime/doc/usr_41.txt @ 16604:1e0a5f09fdf1 v8.1.1305

patch 8.1.1305: there is no easy way to manipulate environment variables commit https://github.com/vim/vim/commit/691ddeefb545d8488e5a495af61caba2e57b3de9 Author: Bram Moolenaar <Bram@vim.org> Date: Thu May 9 14:52:41 2019 +0200 patch 8.1.1305: there is no easy way to manipulate environment variables Problem: There is no easy way to manipulate environment variables. Solution: Add environ(), getenv() and setenv(). (Yasuhiro Matsumoto, closes #2875)
author Bram Moolenaar <Bram@vim.org>
date Thu, 09 May 2019 15:00:07 +0200
parents bcc343175103
children 1eaf34420bb3
comparison
equal deleted inserted replaced
16603:83e535d7e403 16604:1e0a5f09fdf1
772 chdir() change current working directory 772 chdir() change current working directory
773 delete() delete a file 773 delete() delete a file
774 rename() rename a file 774 rename() rename a file
775 system() get the result of a shell command as a string 775 system() get the result of a shell command as a string
776 systemlist() get the result of a shell command as a list 776 systemlist() get the result of a shell command as a list
777 environ() get all environment variables
778 getenv() get one environment variable
779 setenv() set an environment variable
777 hostname() name of the system 780 hostname() name of the system
778 readfile() read a file into a List of lines 781 readfile() read a file into a List of lines
779 readdir() get a List of file names in a directory 782 readdir() get a List of file names in a directory
780 writefile() write a List of lines or Blob into a file 783 writefile() write a List of lines or Blob into a file
781 784
901 getwinpos() position of the Vim window 904 getwinpos() position of the Vim window
902 getwinposx() X position of the Vim window 905 getwinposx() X position of the Vim window
903 getwinposy() Y position of the Vim window 906 getwinposy() Y position of the Vim window
904 balloon_show() set the balloon content 907 balloon_show() set the balloon content
905 balloon_split() split a message for a balloon 908 balloon_split() split a message for a balloon
909 balloon_gettext() get the text in the balloon
906 910
907 Vim server: *server-functions* 911 Vim server: *server-functions*
908 serverlist() return the list of server names 912 serverlist() return the list of server names
909 remote_startserver() run a server 913 remote_startserver() run a server
910 remote_send() send command characters to a Vim server 914 remote_send() send command characters to a Vim server