aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os/time.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2020-08-31 00:51:35 -0700
committerGitHub <noreply@github.com>2020-08-31 00:51:35 -0700
commitc2662210b5af8aeced68c9cae540567496926a44 (patch)
treee1928885ec5792c76fbbf9710f54b3b17551a721 /src/nvim/os/time.c
parent3229ba0cdef530fe7ab18326537118f88355e111 (diff)
downloadrneovim-c2662210b5af8aeced68c9cae540567496926a44.tar.gz
rneovim-c2662210b5af8aeced68c9cae540567496926a44.tar.bz2
rneovim-c2662210b5af8aeced68c9cae540567496926a44.zip
docs, remove 'guifontset' #11708
- remove redundant autocmd list This "grouped" list is useless, it only gets in the way when searching for event names. - intro.txt: cleanup - starting.txt: update, revisit - doc: `:help bisect` - mbyte.txt: update aliases 1656367b90bd. closes #11960 - options: remove 'guifontset'. Why: - It is complicated and is used by almost no one. - It is unlikely to be implemented by Nvim GUIs (complicated to parse, specific to Xorg...).
Diffstat (limited to 'src/nvim/os/time.c')
-rw-r--r--src/nvim/os/time.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/os/time.c b/src/nvim/os/time.c
index 346e40e02e..349a91fc1e 100644
--- a/src/nvim/os/time.c
+++ b/src/nvim/os/time.c
@@ -56,6 +56,8 @@ uint64_t os_now(void)
/// Sleeps for `ms` milliseconds.
///
+/// @see uv_sleep() (libuv v1.34.0)
+///
/// @param ms Number of milliseconds to sleep
/// @param ignoreinput If true, only SIGINT (CTRL-C) can interrupt.
void os_delay(uint64_t ms, bool ignoreinput)
@@ -72,6 +74,8 @@ void os_delay(uint64_t ms, bool ignoreinput)
/// Sleeps for `us` microseconds.
///
+/// @see uv_sleep() (libuv v1.34.0)
+///
/// @param us Number of microseconds to sleep.
/// @param ignoreinput If true, ignore all input (including SIGINT/CTRL-C).
/// If false, waiting is aborted on any input.