diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2023-01-03 02:54:53 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2023-01-05 17:10:02 +0100 |
commit | f43de742e881e54a3602e00c8c247cecca65a266 (patch) | |
tree | b53c6c40989690a37a2bd278587aaba64e7ff332 /runtime | |
parent | adef308a5925a3b967af3bd7c598074e5b6cae18 (diff) | |
download | rneovim-f43de742e881e54a3602e00c8c247cecca65a266.tar.gz rneovim-f43de742e881e54a3602e00c8c247cecca65a266.tar.bz2 rneovim-f43de742e881e54a3602e00c8c247cecca65a266.zip |
feat(lua): execute stdin ("-") as Lua
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/starting.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/runtime/doc/starting.txt b/runtime/doc/starting.txt index 8dd083e4a3..fa9e23eb00 100644 --- a/runtime/doc/starting.txt +++ b/runtime/doc/starting.txt @@ -236,9 +236,10 @@ argument. < This loads Lua module "bar" before executing "foo.lua": > nvim +"lua require('bar')" -l foo.lua < - User |config| is skipped unless |-u| was given. - User |shada| is skipped unless |-i| was given. - Swap file is skipped (like |-n|). + Skips user |config| unless |-u| was given. + Disables plugins unless 'loadplugins' was set. + Disables |shada| unless |-i| was given. + Disables swapfile (like |-n|). *-b* -b Binary mode. File I/O will only recognize <NL> to separate |