diff --git a/tldr/gvim b/tldr/gvim new file mode 100644 index 00000000..9185e203 --- /dev/null +++ b/tldr/gvim @@ -0,0 +1,18 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# gvim + +> A Graphical User Interface version of Vim (Vi IMproved), a command-line text editor. +> See also: `vimdiff`, `vimtutor`, `nvim`, `vim`. +> More information: . + +- Open `gvim`: + +`gvim` + +- Open a specific file: + +`gvim {{path/to/file}}` diff --git a/tldr/usleep b/tldr/usleep new file mode 100644 index 00000000..0d0bb7f3 --- /dev/null +++ b/tldr/usleep @@ -0,0 +1,19 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# usleep + +> Delay execution for a specific interval in microseconds. +> Largely deprecated in favor of `nanosleep`. +> See also: `sleep`, `nanosleep`. +> More information: . + +- Delay in microseconds: + +`usleep {{microseconds}}` + +- Execute a specific command after a 500,000 microseconds delay: + +`usleep 500000 && {{command}}` diff --git a/tldr/vim b/tldr/vim index c1786db7..f211dabc 100644 --- a/tldr/vim +++ b/tldr/vim @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Vim (Vi IMproved), a command-line text editor, provides several modes for different kinds of text manipulation. > Pressing `` in normal mode enters insert mode. Pressing `` goes back to normal mode, which enables the use of Vim commands. -> See also: `vimdiff`, `vimtutor`, `nvim`. +> See also: `vimdiff`, `vimtutor`, `nvim`, `gvim`. > More information: . - Open a file: