From f43de742e881e54a3602e00c8c247cecca65a266 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Tue, 3 Jan 2023 02:54:53 +0100 Subject: feat(lua): execute stdin ("-") as Lua --- runtime/doc/starting.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'runtime/doc') 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 to separate -- cgit