1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-21 03:39:16 +03:00

docs: fill in version in place of "nightly" for some newer features

This commit is contained in:
Wez Furlong 2020-05-03 18:24:55 -07:00
parent 3b5ad6140e
commit 27a7b6b2fd
2 changed files with 6 additions and 6 deletions

View File

@ -78,7 +78,7 @@ bind a key to the `ShowLauncher` action to trigger the menu.
The launcher menu by default lists the various multiplexer domains and offers
the option of connecting and spawning tabs/windows in those domains.
*(New in the most recent nightly!)* You can define you own entries using the
*Since 20200503-171512-b13ef15f*: You can define you own entries using the
`launch_menu` configuration setting. The snippet below adds two new entries to
the menu; one that runs the `top` program to monitor process activity and a
second one that explicitly launches the `bash` shell.

View File

@ -214,7 +214,7 @@ return {
### `wezterm.read_dir(path)`
*Since: nightly*
*Since: 20200503-171512-b13ef15f*
This function returns an array containing the absolute file names of the
directory specified. Due to limitations in the lua bindings, all of the paths
@ -232,7 +232,7 @@ end
### `wezterm.glob(pattern [, relative_to])`
*Since: nightly*
*Since: 20200503-171512-b13ef15f*
This function evalutes the glob `pattern` and returns an array containing the
absolute file names of the matching results. Due to limitations in the lua
@ -254,7 +254,7 @@ end
### `wezterm.run_child_process(args)`
*Since: nightly*
*Since: 20200503-171512-b13ef15f*
This function accepts an argument list; it will attempt to spawn that command
and will return a tuple consisting of the boolean success of the invocation,
@ -268,7 +268,7 @@ local success, stdout, stderr = wezterm.run_child_process({"ls", "-l"})
### `wezterm.split_by_newlines(str)`
*Since: nightly*
*Since: 20200503-171512-b13ef15f*
This function takes the input string and splits it by newlines (both `\n` and `\r\n`
are recognized as newlines) and returns the result as an array of strings that
@ -286,7 +286,7 @@ end
### `wezterm.utf16_to_utf8(str)`
*Since: nightly*
*Since: 20200503-171512-b13ef15f*
This function is overly specific and exists primarily to workaround
[this wsl.exe issue](https://github.com/microsoft/WSL/issues/4456).