neovim/src/nvim/main.c

1992 lines
61 KiB
C
Raw Normal View History

2017-04-19 18:11:50 +02:00
// This is an open source non-commercial project. Dear PVS-Studio, please check
// it. PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
#define EXTERN
2015-01-24 01:42:21 +01:00
#include <assert.h>
#include <stdint.h>
#include <string.h>
2014-04-16 08:21:19 +02:00
#include <stdbool.h>
#include <msgpack.h>
2014-06-17 17:22:05 +02:00
#include "nvim/ascii.h"
#include "nvim/vim.h"
#include "nvim/main.h"
#include "nvim/buffer.h"
#include "nvim/charset.h"
#include "nvim/diff.h"
#include "nvim/eval.h"
#include "nvim/ex_cmds.h"
#include "nvim/ex_cmds2.h"
#include "nvim/ex_docmd.h"
#include "nvim/fileio.h"
#include "nvim/fold.h"
#include "nvim/getchar.h"
#include "nvim/hashtab.h"
#include "nvim/highlight.h"
#include "nvim/iconv.h"
#include "nvim/if_cscope.h"
2014-06-17 20:43:22 +02:00
#ifdef HAVE_LOCALE_H
# include <locale.h>
#endif
#include "nvim/mark.h"
#include "nvim/mbyte.h"
#include "nvim/memline.h"
#include "nvim/message.h"
#include "nvim/misc1.h"
#include "nvim/garray.h"
#include "nvim/log.h"
#include "nvim/memory.h"
#include "nvim/move.h"
#include "nvim/mouse.h"
#include "nvim/normal.h"
#include "nvim/ops.h"
#include "nvim/option.h"
#include "nvim/os_unix.h"
#include "nvim/os/os_defs.h"
#include "nvim/path.h"
#include "nvim/profile.h"
#include "nvim/popupmnu.h"
#include "nvim/quickfix.h"
#include "nvim/screen.h"
#include "nvim/sign.h"
main: Start modeling Nvim as pushdown automaton From a very high level point of view, Vim/Nvim can be described as state machines following these instructions in a loop: - Read user input - Peform some action. The action is determined by the current state and can switch states. - Possibly display some feedback to the user. This is not immediately visible because these instructions spread across dozens of nested loops and function calls, making it very hard to modify the state machine(to support more event types, for example). So far, the approach Nvim has taken to allow more events is this: - At the very core function that blocks for input, poll for arbitrary events. - If the event received from the OS is user input, just return it normally to the callers. - If the event is not direct result of user input(possibly a vimscript function call coming from a msgpack-rpc socket or a job control callback), return a special key code(`K_EVENT`) that is handled by callers where it is safer to perform arbitrary actions. One problem with this approach is that the `K_EVENT` signal is being sent across multiple states that may be unaware of it. This was partially fixed with the `input_enable_events`/`input_disable_events` functions, which were added as a mechanism that the upper layers can use to tell the core input functions that it is ready to accept `K_EVENT`. Another problem is that the mapping engine is implemented in getchar.c which is called from every state, but the mapping engine is not aware of `K_EVENT` so events can break mappings. While it is theoretically possible to modify getchar.c to make it aware of `K_EVENT`, this commit fixes the problem with a different approach: Model Nvim as a pushdown automaton(https://en.wikipedia.org/wiki/Pushdown_automaton). This design has many advantages which include: - Decoupling the event loop from the states reponsible for handling events. - Better control of state transition with less dependency on global variable hacks(eg: 'restart_edit' global variable). - Easier removal of global variables and function splitting. That is because many variables are for state-specific information, and probably ended up being global to simplify communication between functions, which we fix by storing state-specific information in specialized structures. The final goal is to let Nvim have a single top-level event loop represented by the following pseudo-code: ``` while not quitting let event = read_event current_state(event) update_screen() ``` This closely mirrors the state machine description above and makes it easier to understand, extend and debug the program. Note that while the pseudo code suggests an explicit stack of states that doesn't rely on return addresses(as suggested by the principles of automata-based programming: https://en.wikipedia.org/wiki/Automata-based_programming), for now we'll use the call stack as a structure to manage state transitioning as it would be very difficult to refactor Nvim to use an explicit stack of states, and the benefits would be small. While this change may seem like an endless amount of work, it is possible to do it incrementally as was shown in the previous commits. The general procedure is: 1- Find a blocking `vgetc()`(or derivatives) call. This call represents an implicit state of the program. 2- Split the code before and after the `vgetc()` call into functions that match the signature of `state_check_callback` and `state_execute_callback. Only `state_execute_callback` is required. 3- Create a `VimState` "subclass" and a initializer function that sets the function pointers and performs any other required initialization steps. If the state has no local variables, just use `VimState` without subclassing. 4- Instead of calling the original function containing the `vgetc()`, initialize a stack-allocated `VimState` subclass, then call `state_enter` to begin processing events in the state. 5- The check/execute callbacks can return 1 to continue normally, 0 to break the loop or -1 to skip to the next iteration. These callbacks contain code that execute before and after the old `vgetc()` call. The functions created in step 2 may contain other `vgetc()` calls. These represent implicit sub-states of the current state, but it is fine to remove them later in smaller steps since we didn't break compatibility with existing code.
2015-10-05 19:17:15 +02:00
#include "nvim/state.h"
#include "nvim/strings.h"
#include "nvim/syntax.h"
#include "nvim/ui.h"
#include "nvim/version.h"
#include "nvim/window.h"
#include "nvim/shada.h"
#include "nvim/os/input.h"
#include "nvim/os/os.h"
#include "nvim/os/time.h"
#include "nvim/os/fileio.h"
#include "nvim/event/loop.h"
#include "nvim/os/signal.h"
#include "nvim/event/process.h"
#include "nvim/msgpack_rpc/helpers.h"
#include "nvim/msgpack_rpc/server.h"
#include "nvim/msgpack_rpc/channel.h"
#include "nvim/api/ui.h"
#include "nvim/api/private/defs.h"
#include "nvim/api/private/helpers.h"
#include "nvim/api/private/handle.h"
#include "nvim/api/private/dispatch.h"
#ifndef WIN32
# include "nvim/os/pty_process_unix.h"
#endif
#include "nvim/api/vim.h"
2018-04-11 01:28:33 +02:00
// Maximum number of commands from + or -c arguments.
#define MAX_ARG_CMDS 10
2018-04-11 01:28:33 +02:00
// values for "window_layout"
#define WIN_HOR 1 // "-o" horizontally split windows
#define WIN_VER 2 // "-O" vertically split windows
#define WIN_TABS 3 // "-p" windows on tab pages
2018-04-11 01:28:33 +02:00
// Struct for various parameters passed between main() and other functions.
typedef struct {
int argc;
char **argv;
2015-05-13 21:29:49 +02:00
char *use_vimrc; // vimrc from -u argument
2018-04-11 01:28:33 +02:00
int n_commands; // no. of commands from + or -c
char *commands[MAX_ARG_CMDS]; // commands from + or -c arg
2018-04-11 01:28:33 +02:00
char_u cmds_tofree[MAX_ARG_CMDS]; // commands that need free()
int n_pre_commands; // no. of commands from --cmd
char *pre_commands[MAX_ARG_CMDS]; // commands from --cmd argument
2018-04-11 01:28:33 +02:00
int edit_type; // type of editing to do
char_u *tagname; // tag from -t argument
char_u *use_ef; // 'errorfile' from -q argument
bool input_isatty; // stdin is a terminal
bool output_isatty; // stdout is a terminal
bool err_isatty; // stderr is a terminal
int no_swap_file; // "-n" argument used
int use_debug_break_level;
2018-04-11 01:28:33 +02:00
int window_count; // number of windows to use
int window_layout; // 0, WIN_HOR, WIN_VER or WIN_TABS
2018-04-11 01:28:33 +02:00
int diff_mode; // start with 'diff' set
char *listen_addr; // --listen {address}
} mparm_T;
// Values for edit_type.
#define EDIT_NONE 0 // no edit type yet
#define EDIT_FILE 1 // file name argument[s] given, use argument list
#define EDIT_STDIN 2 // read file from stdin
#define EDIT_TAG 3 // tag name argument given, use tagname
#define EDIT_QF 4 // start in quickfix mode
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "main.c.generated.h"
#endif
Loop main_loop;
static char *argv0 = NULL;
// Error messages
static const char *err_arg_missing = N_("Argument missing after");
static const char *err_opt_garbage = N_("Garbage after option argument");
static const char *err_opt_unknown = N_("Unknown option argument");
static const char *err_too_many_args = N_("Too many edit arguments");
static const char *err_extra_cmd =
N_("Too many \"+command\", \"-c command\" or \"--cmd command\" arguments");
void event_init(void)
{
log_init();
loop_init(&main_loop, NULL);
// early msgpack-rpc initialization
msgpack_rpc_init_method_table();
msgpack_rpc_helpers_init();
input_init();
signal_init();
// finish mspgack-rpc initialization
channel_init();
remote_ui_init();
api_vim_init();
terminal_init();
ui_init();
}
/// @returns false if main_loop could not be closed gracefully
bool event_teardown(void)
{
if (!main_loop.events) {
input_stop();
return true;
}
multiqueue_process_events(main_loop.events);
loop_poll_events(&main_loop, 0); // Drain thread_events, fast_events.
input_stop();
channel_teardown();
process_teardown(&main_loop);
2016-05-28 11:16:03 +02:00
timer_teardown();
server_teardown();
signal_teardown();
terminal_teardown();
return loop_close(&main_loop, true);
}
/// Performs early initialization.
///
/// Needed for unit tests. Must be called after `time_init()`.
void early_init(void)
{
env_init();
fs_init();
handle_init();
eval_init(); // init global variables
init_path(argv0 ? argv0 : "nvim");
init_normal_cmds(); // Init the table of Normal mode commands.
highlight_init();
#if defined(HAVE_LOCALE_H)
// Setup to use the current locale (for ctype() and many other things).
// NOTE: Translated messages with encodings other than latin1 will not
// work until set_init_1() has been called!
init_locale();
#endif
// Allocate the first window and buffer.
// Can't do anything without it, exit when it fails.
if (!win_alloc_first()) {
mch_exit(0);
}
init_yank(); // init yank buffers
alist_init(&global_alist); // Init the argument list to empty.
global_alist.id = 0;
// Set the default values for the options.
// NOTE: Non-latin1 translated messages are working only after this,
// because this is where "has_mbyte" will be set, which is used by
// msg_outtrans_len_attr().
// First find out the home directory, needed to expand "~" in options.
init_homedir(); // find real value of $HOME
set_init_1();
TIME_MSG("inits 1");
set_lang_var(); // set v:lang and v:ctype
init_signs();
}
#ifdef MAKE_LIB
int nvim_main(int argc, char **argv); // silence -Wmissing-prototypes
int nvim_main(int argc, char **argv)
#elif defined(WIN32)
int wmain(int argc, wchar_t **argv_w) // multibyte args on Windows. #7060
#else
int main(int argc, char **argv)
#endif
{
#if defined(WIN32) && !defined(MAKE_LIB)
char **argv = xmalloc((size_t)argc * sizeof(char *));
for (int i = 0; i < argc; i++) {
char *buf = NULL;
utf16_to_utf8(argv_w[i], &buf);
assert(buf);
argv[i] = buf;
}
#endif
argv0 = argv[0];
char_u *fname = NULL; // file name from command line
mparm_T params; // various parameters passed between
// main() and other functions.
char_u *cwd = NULL; // current working dir on startup
time_init();
// Many variables are in `params` so that we can pass them around easily.
// `argc` and `argv` are also copied, so that they can be changed.
2014-02-22 04:55:12 +01:00
init_params(&params, argc, argv);
2014-02-22 04:55:12 +01:00
init_startuptime(&params);
event_init();
early_init();
// Check if we have an interactive window.
2014-02-22 04:55:12 +01:00
check_and_set_isatty(&params);
// Process the command line arguments. File names are put in the global
// argument list "global_alist".
command_line_scan(&params);
if (embedded_mode) {
const char *err;
if (!channel_from_stdio(true, CALLBACK_READER_INIT, &err)) {
abort();
}
}
server_init(params.listen_addr);
2016-02-09 20:55:40 +01:00
if (GARGCOUNT > 0) {
fname = get_fname(&params, cwd);
}
TIME_MSG("expanding arguments");
if (params.diff_mode && params.window_count == -1)
params.window_count = 0; /* open up to 3 windows */
/* Don't redraw until much later. */
++RedrawingDisabled;
setbuf(stdout, NULL);
full_screen = !silent_mode;
2018-05-24 11:51:35 +02:00
// Set the default values for the options that use Rows and Columns.
win_init_size();
// Set the 'diff' option now, so that it can be checked for in a vimrc
// file. There is no buffer yet though.
2018-05-24 11:51:35 +02:00
if (params.diff_mode) {
diff_win_options(firstwin, false);
}
2015-01-24 01:42:21 +01:00
assert(p_ch >= 0 && Rows >= p_ch && Rows - p_ch <= INT_MAX);
cmdline_row = (int)(Rows - p_ch);
msg_row = cmdline_row;
screenalloc(); // allocate screen buffers
set_init_2(headless_mode);
TIME_MSG("inits 2");
2018-05-24 11:51:35 +02:00
msg_scroll = true;
no_wait_return = true;
2018-05-24 11:51:35 +02:00
init_highlight(true, false); // Default highlight groups.
TIME_MSG("init highlight");
2018-05-24 11:51:35 +02:00
// Set the break level after the terminal is initialized.
debug_break_level = params.use_debug_break_level;
// Read ex-commands if invoked with "-es".
if (!params.input_isatty && silent_mode && exmode_active == EXMODE_NORMAL) {
input_start(STDIN_FILENO);
}
terminal: New module that implements a terminal emulator This commit integrates libvterm with Neovim and implements a terminal emulator with nvim buffers as the display mechanism. Terminal buffers can be created using any of the following methods: - Opening a file with name following the "term://[${cwd}//[${pid}:]]${cmd}" URI pattern where: - cwd is the working directory of the process - pid is the process id. This is just for use in session files where a pid would have been assigned to the saved buffer title. - cmd is the command to run - Invoking the `:terminal` ex command - Invoking the `termopen` function which returns a job id for automating the terminal window. Some extra changes were also implemented to adapt with terminal buffers. Here's an overview: - The `main` function now sets a BufReadCmd autocmd to intercept the term:// URI and spawn the terminal buffer instead of reading the file. - terminal buffers behave as if the following local buffer options were set: - `nomodifiable` - `swapfile` - `undolevels=-1` - `bufhidden=hide` - All commands that delete buffers(`:bun`, `:bd` and `:bw`) behave the same for terminal buffers, but only work when bang is passed(eg: `:bwipeout!`) - A new "terminal" mode was added. A consequence is that a new set of mapping commands were implemented with the "t" prefix(tmap, tunmap, tnoremap...) - The `edit` function(which enters insert mode) will actually enter terminal mode if the current buffer is a terminal - The `put` operator was adapted to send data to the terminal instead of modifying the buffer directly. - A window being resized will also trigger a terminal resize if the window displays the terminal.
2015-03-08 12:58:31 +01:00
// open terminals when opening files that start with term://
#define PROTO "term://"
do_cmdline_cmd("augroup nvim_terminal");
do_cmdline_cmd("autocmd!");
do_cmdline_cmd("autocmd BufReadCmd " PROTO "* nested "
":if !exists('b:term_title')|call termopen( "
// Capture the command string
"matchstr(expand(\"<amatch>\"), "
"'\\c\\m" PROTO "\\%(.\\{-}//\\%(\\d\\+:\\)\\?\\)\\?\\zs.*'), "
// capture the working directory
"{'cwd': get(matchlist(expand(\"<amatch>\"), "
"'\\c\\m" PROTO "\\(.\\{-}\\)//'), 1, '')})"
"|endif");
do_cmdline_cmd("augroup END");
#undef PROTO
terminal: New module that implements a terminal emulator This commit integrates libvterm with Neovim and implements a terminal emulator with nvim buffers as the display mechanism. Terminal buffers can be created using any of the following methods: - Opening a file with name following the "term://[${cwd}//[${pid}:]]${cmd}" URI pattern where: - cwd is the working directory of the process - pid is the process id. This is just for use in session files where a pid would have been assigned to the saved buffer title. - cmd is the command to run - Invoking the `:terminal` ex command - Invoking the `termopen` function which returns a job id for automating the terminal window. Some extra changes were also implemented to adapt with terminal buffers. Here's an overview: - The `main` function now sets a BufReadCmd autocmd to intercept the term:// URI and spawn the terminal buffer instead of reading the file. - terminal buffers behave as if the following local buffer options were set: - `nomodifiable` - `swapfile` - `undolevels=-1` - `bufhidden=hide` - All commands that delete buffers(`:bun`, `:bd` and `:bw`) behave the same for terminal buffers, but only work when bang is passed(eg: `:bwipeout!`) - A new "terminal" mode was added. A consequence is that a new set of mapping commands were implemented with the "t" prefix(tmap, tunmap, tnoremap...) - The `edit` function(which enters insert mode) will actually enter terminal mode if the current buffer is a terminal - The `put` operator was adapted to send data to the terminal instead of modifying the buffer directly. - A window being resized will also trigger a terminal resize if the window displays the terminal.
2015-03-08 12:58:31 +01:00
// Reset 'loadplugins' for "-u NONE" before "--cmd" arguments.
// Allows for setting 'loadplugins' there.
if (params.use_vimrc != NULL && strequal(params.use_vimrc, "NONE")) {
p_lpl = false;
}
// Wait for UIs to set up Nvim or show early messages
// and prompts (--cmd, swapfile dialog, …).
bool use_remote_ui = (embedded_mode && !headless_mode);
bool use_builtin_ui = (!headless_mode && !embedded_mode && !silent_mode);
if (use_remote_ui || use_builtin_ui) {
TIME_MSG("waiting for UI to make request");
2019-04-12 20:39:47 +02:00
if (use_remote_ui) {
remote_ui_wait_for_attach();
} else {
ui_builtin_start();
}
TIME_MSG("done waiting for UI");
// prepare screen now, so external UIs can display messages
starting = NO_BUFFERS;
screenclear();
TIME_MSG("initialized screen early for UI");
}
2018-05-24 11:51:35 +02:00
// Execute --cmd arguments.
2014-02-01 15:17:43 +01:00
exe_pre_commands(&params);
2018-05-24 11:51:35 +02:00
// Source startup scripts.
2014-02-01 15:17:43 +01:00
source_startup_scripts(&params);
2016-02-12 18:02:42 +01:00
// If using the runtime (-u is not NONE), enable syntax & filetype plugins.
2018-05-24 11:51:35 +02:00
if (params.use_vimrc == NULL || !strequal(params.use_vimrc, "NONE")) {
// Does ":filetype plugin indent on".
filetype_maybe_enable();
// Sources syntax/syntax.vim, which calls `:filetype on`.
syn_maybe_on();
}
2014-02-01 15:17:43 +01:00
/*
* Read all the plugin files.
* Only when compiled with +eval, since most plugins need it.
*/
2014-02-22 04:55:12 +01:00
load_plugins();
// Decide about window layout for diff mode after reading vimrc.
2014-02-22 04:55:12 +01:00
set_window_layout(&params);
2014-02-01 15:17:43 +01:00
/*
* Recovery mode without a file name: List swap files.
* This uses the 'dir' option, therefore it must be after the
* initializations.
*/
if (recoverymode && fname == NULL) {
recover_names(NULL, TRUE, 0, NULL);
mch_exit(0);
}
// Set a few option defaults after reading vimrc files: 'title', 'icon',
// 'shellpipe', 'shellredir'.
2014-02-01 15:17:43 +01:00
set_init_3();
TIME_MSG("inits 3");
// "-n" argument: Disable swap file by setting 'updatecount' to 0.
// Note that this overrides anything from a vimrc file.
if (params.no_swap_file) {
2014-02-01 15:17:43 +01:00
p_uc = 0;
}
// XXX: Minimize 'updatetime' for -es/-Es. #7679
if (silent_mode) {
p_ut = 1;
}
//
// Read in registers, history etc, from the ShaDa file.
// This is where v:oldfiles gets filled.
//
if (*p_shada != NUL) {
shada_read_everything(NULL, false, true);
TIME_MSG("reading ShaDa");
2014-02-01 15:17:43 +01:00
}
2016-07-26 22:16:23 +02:00
// It's better to make v:oldfiles an empty list than NULL.
if (get_vim_var_list(VV_OLDFILES) == NULL) {
set_vim_var_list(VV_OLDFILES, tv_list_alloc(0));
2016-07-26 22:16:23 +02:00
}
2014-02-01 15:17:43 +01:00
/*
* "-q errorfile": Load the error file now.
* If the error file can't be read, exit before doing anything else.
*/
2014-02-22 04:55:12 +01:00
handle_quickfix(&params);
2014-02-01 15:17:43 +01:00
/*
* Start putting things on the screen.
* Scroll screen down before drawing over it
* Clear screen now, so file message will not be cleared.
*/
starting = NO_BUFFERS;
2017-12-03 04:44:46 +01:00
no_wait_return = false;
if (!exmode_active) {
msg_scroll = false;
}
2018-05-24 11:51:35 +02:00
// Read file (text, not commands) from stdin if:
// - stdin is not a tty
// - and -e/-es was not given
2017-12-03 04:44:46 +01:00
//
// Do this before starting Raw mode, because it may change things that the
// writing end of the pipe doesn't like, e.g., in case stdin and stderr
// are the same terminal: "cat | vim -".
// Using autocommands here may cause trouble...
if (params.edit_type == EDIT_STDIN && !recoverymode) {
2014-02-01 15:17:43 +01:00
read_stdin();
2017-12-03 04:44:46 +01:00
}
setmouse(); // may start using the mouse
if (exmode_active || use_remote_ui || use_builtin_ui) {
// Don't clear the screen when starting in Ex mode, or when a UI might have
// displayed messages.
redraw_later(VALID);
} else {
2018-05-24 11:51:35 +02:00
screenclear(); // clear screen
2014-02-01 15:17:43 +01:00
TIME_MSG("clearing screen");
}
2018-05-24 11:51:35 +02:00
no_wait_return = true;
2014-02-01 15:17:43 +01:00
/*
* Create the requested number of windows and edit buffers in them.
* Also does recovery if "recoverymode" set.
*/
create_windows(&params);
TIME_MSG("opening buffers");
2014-02-01 15:17:43 +01:00
/* clear v:swapcommand */
set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
2014-02-01 15:17:43 +01:00
/* Ex starts at last line of the file */
if (exmode_active)
curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
2014-02-01 15:17:43 +01:00
apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
TIME_MSG("BufEnter autocommands");
setpcmark();
2014-02-01 15:17:43 +01:00
/*
* When started with "-q errorfile" jump to first error now.
*/
if (params.edit_type == EDIT_QF) {
qf_jump(NULL, 0, 0, FALSE);
TIME_MSG("jump to first error");
}
// If opened more than one window, start editing files in the other
// windows.
edit_buffers(&params, cwd);
xfree(cwd);
2014-02-01 15:17:43 +01:00
if (params.diff_mode) {
/* set options in each window for "nvim -d". */
FOR_ALL_WINDOWS_IN_TAB(wp, curtab) {
2014-02-01 15:17:43 +01:00
diff_win_options(wp, TRUE);
2014-08-21 02:39:05 +02:00
}
2014-02-01 15:17:43 +01:00
}
2014-02-01 15:17:43 +01:00
/*
* Shorten any of the filenames, but only when absolute.
*/
shorten_fnames(FALSE);
2014-02-01 15:17:43 +01:00
/*
* Need to jump to the tag before executing the '-c command'.
* Makes "vim -c '/return' -t main" work.
*/
2014-02-22 04:55:12 +01:00
handle_tag(params.tagname);
2014-02-01 15:17:43 +01:00
/* Execute any "+", "-c" and "-S" arguments. */
if (params.n_commands > 0)
exe_commands(&params);
starting = 0;
2014-02-01 15:17:43 +01:00
RedrawingDisabled = 0;
redraw_all_later(NOT_VALID);
no_wait_return = false;
// 'autochdir' has been postponed.
do_autochdir();
2014-02-01 15:17:43 +01:00
/* start in insert mode */
if (p_im)
need_start_insertmode = TRUE;
set_vim_var_nr(VV_VIM_DID_ENTER, 1L);
2016-11-14 17:35:19 +01:00
apply_autocmds(EVENT_VIMENTER, NULL, NULL, false, curbuf);
2014-02-01 15:17:43 +01:00
TIME_MSG("VimEnter autocommands");
// Adjust default register name for "unnamed" in 'clipboard'. Can only be
// done after the clipboard is available and all initial commands that may
// modify the 'clipboard' setting have run; i.e. just before entering the
// main loop.
set_reg_var(get_default_register_name());
2014-02-01 15:17:43 +01:00
/* When a startup script or session file setup for diff'ing and
* scrollbind, sync the scrollbind now. */
if (curwin->w_p_diff && curwin->w_p_scb) {
update_topline();
check_scrollbind((linenr_T)0, 0L);
TIME_MSG("diff scrollbinding");
}
2014-02-01 15:17:43 +01:00
/* If ":startinsert" command used, stuff a dummy command to be able to
* call normal_cmd(), which will then start Insert mode. */
if (restart_edit != 0)
stuffcharReadbuff(K_NOP);
// WORKAROUND(mhi): #3023
if (cb_flags & CB_UNNAMEDMASK) {
(void)eval_has_provider("clipboard");
}
2014-02-01 15:17:43 +01:00
TIME_MSG("before starting main loop");
ILOG("starting main loop");
2014-02-01 15:17:43 +01:00
/*
* Call the main command loop. This never returns.
*/
normal_enter(false, false);
#if defined(WIN32) && !defined(MAKE_LIB)
xfree(argv);
#endif
2014-02-01 15:17:43 +01:00
return 0;
}
/// Exit properly
void getout(int exitval)
FUNC_ATTR_NORETURN
{
exiting = true;
/* When running in Ex mode an error causes us to exit with a non-zero exit
* code. POSIX requires this, although it's not 100% clear from the
* standard. */
if (exmode_active)
exitval += ex_exitval;
set_vim_var_nr(VV_EXITING, exitval);
/* Position the cursor on the last screen line, below all the text */
ui_cursor_goto((int)Rows - 1, 0);
/* Optionally print hashtable efficiency. */
hash_debug_results();
if (get_vim_var_nr(VV_DYING) <= 1) {
const tabpage_T *next_tp;
// Trigger BufWinLeave for all windows, but only once per buffer.
for (const tabpage_T *tp = first_tabpage; tp != NULL; tp = next_tp) {
next_tp = tp->tp_next;
FOR_ALL_WINDOWS_IN_TAB(wp, tp) {
if (wp->w_buffer == NULL) {
/* Autocmd must have close the buffer already, skip. */
continue;
}
buf_T *buf = wp->w_buffer;
if (buf_get_changedtick(buf) != -1) {
bufref_T bufref;
set_bufref(&bufref, buf);
apply_autocmds(EVENT_BUFWINLEAVE, buf->b_fname,
2017-02-22 23:38:54 +01:00
buf->b_fname, false, buf);
if (bufref_valid(&bufref)) {
buf_set_changedtick(buf, -1); // note that we did it already
}
// start all over, autocommands may mess up the lists
next_tp = first_tabpage;
break;
}
}
}
/* Trigger BufUnload for buffers that are loaded */
2014-08-03 03:19:33 +02:00
FOR_ALL_BUFFERS(buf) {
if (buf->b_ml.ml_mfp != NULL) {
bufref_T bufref;
set_bufref(&bufref, buf);
apply_autocmds(EVENT_BUFUNLOAD, buf->b_fname, buf->b_fname, false, buf);
if (!bufref_valid(&bufref)) {
// Autocmd deleted the buffer.
break;
}
}
2014-08-03 03:19:33 +02:00
}
apply_autocmds(EVENT_VIMLEAVEPRE, NULL, NULL, FALSE, curbuf);
}
if (p_shada && *p_shada != NUL) {
// Write out the registers, history, marks etc, to the ShaDa file
shada_write_file(NULL, false);
}
if (get_vim_var_nr(VV_DYING) <= 1)
apply_autocmds(EVENT_VIMLEAVE, NULL, NULL, FALSE, curbuf);
profile_dump();
if (did_emsg
2014-02-01 15:17:43 +01:00
) {
/* give the user a chance to read the (error) message */
no_wait_return = FALSE;
wait_return(FALSE);
}
/* Position the cursor again, the autocommands may have moved it */
ui_cursor_goto((int)Rows - 1, 0);
2017-10-05 09:49:17 +02:00
// Apply 'titleold'.
if (p_title && *p_titleold != NUL) {
ui_call_set_title(cstr_as_string((char *)p_titleold));
}
#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
iconv_end();
#endif
cs_end();
if (garbage_collect_at_exit) {
garbage_collect(false);
}
mch_exit(exitval);
}
/// Gets the integer value of a numeric command line argument if given,
/// such as '-o10'.
///
/// @param[in] p pointer to argument
/// @param[in, out] idx pointer to index in argument, is incremented
/// @param[in] def default value
///
/// @return def unmodified if:
/// - argument isn't given
/// - argument is non-numeric
///
/// @return argument's numeric value otherwise
static int get_number_arg(const char *p, int *idx, int def)
FUNC_ATTR_NONNULL_ALL FUNC_ATTR_WARN_UNUSED_RESULT
{
if (ascii_isdigit(p[*idx])) { // -V522
def = atoi(&(p[*idx]));
while (ascii_isdigit(p[*idx])) {
*idx = *idx + 1;
}
}
return def;
}
#if defined(HAVE_LOCALE_H)
2017-12-03 04:44:46 +01:00
/// Setup to use the current locale (for ctype() and many other things).
static void init_locale(void)
{
setlocale(LC_ALL, "");
# ifdef LC_NUMERIC
/* Make sure strtod() uses a decimal point, not a comma. */
setlocale(LC_NUMERIC, "C");
# endif
# ifdef LOCALE_INSTALL_DIR // gnu/linux standard: $prefix/share/locale
bindtextdomain(PROJECT_NAME, LOCALE_INSTALL_DIR);
# else // old vim style: $runtime/lang
{
char_u *p;
// expand_env() doesn't work yet, because g_chartab[] is not
// initialized yet, call vim_getenv() directly
p = (char_u *)vim_getenv("VIMRUNTIME");
if (p != NULL && *p != NUL) {
vim_snprintf((char *)NameBuff, MAXPATHL, "%s/lang", p);
bindtextdomain(PROJECT_NAME, (char *)NameBuff);
}
xfree(p);
}
# endif
textdomain(PROJECT_NAME);
2014-02-22 04:55:12 +01:00
TIME_MSG("locale set");
}
#endif
2018-05-23 10:54:09 +02:00
/// Decides whether text (as opposed to commands) will be read from stdin.
/// @see EDIT_STDIN
static bool edit_stdin(bool explicit, mparm_T *parmp)
2018-05-23 10:54:09 +02:00
{
bool implicit = !headless_mode
2018-05-23 10:54:09 +02:00
&& !embedded_mode
&& exmode_active != EXMODE_NORMAL // -E/-Es but not -e/-es.
2018-05-23 10:54:09 +02:00
&& !parmp->input_isatty
&& scriptin[0] == NULL; // `-s -` was not given.
return explicit || implicit;
2018-05-23 10:54:09 +02:00
}
2018-04-16 22:38:02 +02:00
/// Scan the command line arguments.
static void command_line_scan(mparm_T *parmp)
{
int argc = parmp->argc;
2018-05-24 11:51:35 +02:00
char **argv = parmp->argv;
int argv_idx; // index in argv[n][]
bool had_stdin_file = false; // found explicit "-" argument
bool had_minmin = false; // found "--" argument
2018-05-24 11:51:35 +02:00
int want_argument; // option argument with argument
int c;
long n;
2018-05-24 11:51:35 +02:00
argc--;
argv++;
argv_idx = 1; // active option letter is argv[0][argv_idx]
while (argc > 0) {
2018-05-24 11:51:35 +02:00
// "+" or "+{number}" or "+/{pat}" or "+{command}" argument.
if (argv[0][0] == '+' && !had_minmin) {
2018-05-24 11:51:35 +02:00
if (parmp->n_commands >= MAX_ARG_CMDS) {
mainerr(err_extra_cmd, NULL);
2018-05-24 11:51:35 +02:00
}
argv_idx = -1; // skip to next argument
if (argv[0][1] == NUL) {
parmp->commands[parmp->n_commands++] = "$";
2018-05-24 11:51:35 +02:00
} else {
parmp->commands[parmp->n_commands++] = &(argv[0][1]);
2018-05-24 11:51:35 +02:00
}
// Optional argument.
} else if (argv[0][0] == '-' && !had_minmin) {
want_argument = false;
c = argv[0][argv_idx++];
switch (c) {
2018-05-24 11:51:35 +02:00
case NUL: { // "nvim -" read from stdin
if (exmode_active) {
2018-05-24 11:51:35 +02:00
// "nvim -e -" silent mode
silent_mode = true;
parmp->no_swap_file = true;
} else {
if (parmp->edit_type != EDIT_NONE
&& parmp->edit_type != EDIT_FILE
&& parmp->edit_type != EDIT_STDIN) {
mainerr(err_too_many_args, argv[0]);
}
had_stdin_file = true;
2014-02-01 15:17:43 +01:00
parmp->edit_type = EDIT_STDIN;
}
2018-05-24 11:51:35 +02:00
argv_idx = -1; // skip to next argument
2014-02-01 15:17:43 +01:00
break;
2018-05-24 11:51:35 +02:00
}
case '-': { // "--" don't take any more option arguments
// "--help" give help message
// "--version" give version message
// "--noplugin[s]" skip plugins
// "--cmd <cmd>" execute cmd before vimrc
if (STRICMP(argv[0] + argv_idx, "help") == 0) {
2014-02-01 15:17:43 +01:00
usage();
mch_exit(0);
} else if (STRICMP(argv[0] + argv_idx, "version") == 0) {
version();
2014-02-01 15:17:43 +01:00
mch_exit(0);
} else if (STRICMP(argv[0] + argv_idx, "api-info") == 0) {
FileDescriptor fp;
const int fof_ret = file_open_fd(&fp, STDOUT_FILENO,
kFileWriteOnly);
msgpack_packer *p = msgpack_packer_new(&fp, msgpack_file_write);
if (fof_ret != 0) {
emsgf(_("E5421: Failed to open stdin: %s"), os_strerror(fof_ret));
}
if (p == NULL) {
EMSG(_(e_outofmem));
}
Object md = DICTIONARY_OBJ(api_metadata());
msgpack_rpc_from_object(md, p);
msgpack_packer_free(p);
const int ff_ret = file_flush(&fp);
if (ff_ret < 0) {
msgpack_file_write_error(ff_ret);
}
mch_exit(0);
} else if (STRICMP(argv[0] + argv_idx, "headless") == 0) {
headless_mode = true;
} else if (STRICMP(argv[0] + argv_idx, "embed") == 0) {
embedded_mode = true;
} else if (STRNICMP(argv[0] + argv_idx, "listen", 6) == 0) {
want_argument = true;
argv_idx += 6;
} else if (STRNICMP(argv[0] + argv_idx, "literal", 7) == 0) {
// Do nothing: file args are always literal. #7679
2018-05-24 11:51:35 +02:00
} else if (STRNICMP(argv[0] + argv_idx, "noplugin", 8) == 0) {
p_lpl = false;
} else if (STRNICMP(argv[0] + argv_idx, "cmd", 3) == 0) {
want_argument = true;
2014-02-01 15:17:43 +01:00
argv_idx += 3;
} else if (STRNICMP(argv[0] + argv_idx, "startuptime", 11) == 0) {
2018-05-24 11:51:35 +02:00
want_argument = true;
2014-02-01 15:17:43 +01:00
argv_idx += 11;
} else if (STRNICMP(argv[0] + argv_idx, "clean", 5) == 0) {
parmp->use_vimrc = "NONE";
set_option_value("shadafile", 0L, "NONE", 0);
} else {
2014-02-01 15:17:43 +01:00
if (argv[0][argv_idx])
mainerr(err_opt_unknown, argv[0]);
2018-05-24 11:51:35 +02:00
had_minmin = true;
}
if (!want_argument) {
argv_idx = -1; // skip to next argument
2014-02-01 15:17:43 +01:00
}
break;
2018-05-24 11:51:35 +02:00
}
case 'A': { // "-A" start in Arabic mode.
set_option_value("arabic", 1L, NULL, 0);
2014-02-01 15:17:43 +01:00
break;
}
case 'b': { // "-b" binary mode.
// Needs to be effective before expanding file names, because
// for Win32 this makes us edit a shortcut file itself,
// instead of the file it links to.
2014-02-01 15:17:43 +01:00
set_options_bin(curbuf->b_p_bin, 1, 0);
curbuf->b_p_bin = 1; // Binary file I/O.
2014-02-01 15:17:43 +01:00
break;
}
2018-05-24 11:51:35 +02:00
case 'D': { // "-D" Debugging
parmp->use_debug_break_level = 9999;
break;
}
case 'd': { // "-d" 'diff'
parmp->diff_mode = true;
break;
}
case 'e': { // "-e" Ex mode
2014-02-01 15:17:43 +01:00
exmode_active = EXMODE_NORMAL;
break;
2018-05-24 11:51:35 +02:00
}
case 'E': { // "-E" Ex mode
2014-02-01 15:17:43 +01:00
exmode_active = EXMODE_VIM;
break;
2018-05-24 11:51:35 +02:00
}
case 'f': { // "-f" GUI: run in foreground.
2014-02-01 15:17:43 +01:00
break;
2018-05-24 11:51:35 +02:00
}
case '?': // "-?" give help message (for MS-Windows)
2018-05-24 11:51:35 +02:00
case 'h': { // "-h" give help message
2014-02-01 15:17:43 +01:00
usage();
mch_exit(0);
2018-05-24 11:51:35 +02:00
}
case 'H': { // "-H" start in Hebrew mode: rl + hkmap set.
p_hkmap = true;
set_option_value("rl", 1L, NULL, 0);
2014-02-01 15:17:43 +01:00
break;
}
case 'l': { // "-l" lisp mode, 'lisp' and 'showmatch' on.
set_option_value("lisp", 1L, NULL, 0);
p_sm = true;
2014-02-01 15:17:43 +01:00
break;
}
2018-05-24 11:51:35 +02:00
case 'M': { // "-M" no changes or writing of files
2014-02-01 15:17:43 +01:00
reset_modifiable();
FALLTHROUGH;
}
2018-05-24 11:51:35 +02:00
case 'm': { // "-m" no writing of files
p_write = false;
2014-02-01 15:17:43 +01:00
break;
2018-05-24 11:51:35 +02:00
}
2018-05-24 11:51:35 +02:00
case 'N': // "-N" Nocompatible
case 'X': // "-X" Do not connect to X server
2018-04-16 22:38:02 +02:00
// No-op
2014-02-01 15:17:43 +01:00
break;
2018-05-24 11:51:35 +02:00
case 'n': { // "-n" no swap file
parmp->no_swap_file = true;
2014-02-01 15:17:43 +01:00
break;
2018-05-24 11:51:35 +02:00
}
case 'p': { // "-p[N]" open N tab pages
2018-04-08 14:04:58 +02:00
// default is 0: open window for each file
parmp->window_count = get_number_arg(argv[0], &argv_idx, 0);
2014-02-01 15:17:43 +01:00
parmp->window_layout = WIN_TABS;
break;
2018-05-24 11:51:35 +02:00
}
case 'o': { // "-o[N]" open N horizontal split windows
// default is 0: open window for each file
parmp->window_count = get_number_arg(argv[0], &argv_idx, 0);
2014-02-01 15:17:43 +01:00
parmp->window_layout = WIN_HOR;
break;
2018-05-24 11:51:35 +02:00
}
case 'O': { // "-O[N]" open N vertical split windows
// default is 0: open window for each file
parmp->window_count = get_number_arg(argv[0], &argv_idx, 0);
2014-02-01 15:17:43 +01:00
parmp->window_layout = WIN_VER;
break;
2018-05-24 11:51:35 +02:00
}
case 'q': { // "-q" QuickFix mode
if (parmp->edit_type != EDIT_NONE) {
mainerr(err_too_many_args, argv[0]);
2018-05-24 11:51:35 +02:00
}
2014-02-01 15:17:43 +01:00
parmp->edit_type = EDIT_QF;
2018-05-24 11:51:35 +02:00
if (argv[0][argv_idx]) { // "-q{errorfile}"
2014-02-01 15:17:43 +01:00
parmp->use_ef = (char_u *)argv[0] + argv_idx;
argv_idx = -1;
2018-05-24 11:51:35 +02:00
} else if (argc > 1) { // "-q {errorfile}"
want_argument = true;
}
2014-02-01 15:17:43 +01:00
break;
2018-05-24 11:51:35 +02:00
}
case 'R': { // "-R" readonly mode
readonlymode = true;
curbuf->b_p_ro = true;
p_uc = 10000; // don't update very often
2014-02-01 15:17:43 +01:00
break;
2018-05-24 11:51:35 +02:00
}
case 'r': // "-r" recovery mode
case 'L': { // "-L" recovery mode
2014-02-01 15:17:43 +01:00
recoverymode = 1;
break;
2018-05-24 11:51:35 +02:00
}
case 's': {
if (exmode_active) { // "-es" silent (batch) Ex-mode
silent_mode = true;
parmp->no_swap_file = true;
} else { // "-s {scriptin}" read from script file
want_argument = true;
}
2014-02-01 15:17:43 +01:00
break;
2018-05-24 11:51:35 +02:00
}
case 't': { // "-t {tag}" or "-t{tag}" jump to tag
if (parmp->edit_type != EDIT_NONE) {
mainerr(err_too_many_args, argv[0]);
2018-05-24 11:51:35 +02:00
}
2014-02-01 15:17:43 +01:00
parmp->edit_type = EDIT_TAG;
2018-05-24 11:51:35 +02:00
if (argv[0][argv_idx]) { // "-t{tag}"
2014-02-01 15:17:43 +01:00
parmp->tagname = (char_u *)argv[0] + argv_idx;
argv_idx = -1;
2018-05-24 11:51:35 +02:00
} else { // "-t {tag}"
want_argument = true;
}
2014-02-01 15:17:43 +01:00
break;
2018-05-24 11:51:35 +02:00
}
case 'v': {
version();
mch_exit(0);
2018-05-24 11:51:35 +02:00
}
case 'V': { // "-V{N}" Verbose level
// default is 10: a little bit verbose
p_verbose = get_number_arg(argv[0], &argv_idx, 10);
if (argv[0][argv_idx] != NUL) {
set_option_value("verbosefile", 0L, argv[0] + argv_idx, 0);
2014-02-01 15:17:43 +01:00
argv_idx = (int)STRLEN(argv[0]);
}
break;
2018-05-24 11:51:35 +02:00
}
case 'w': { // "-w{number}" set window height
// "-w {scriptout}" write to script
if (ascii_isdigit(((char_u *)argv[0])[argv_idx])) {
n = get_number_arg(argv[0], &argv_idx, 10);
set_option_value("window", n, NULL, 0);
2014-02-01 15:17:43 +01:00
break;
}
2018-05-24 11:51:35 +02:00
want_argument = true;
break;
2018-05-24 11:51:35 +02:00
}
case 'Z': { // "-Z" restricted mode
restricted = true;
2014-02-01 15:17:43 +01:00
break;
2018-05-24 11:51:35 +02:00
}
2018-05-24 11:51:35 +02:00
case 'c': { // "-c{command}" or "-c {command}" exec command
if (argv[0][argv_idx] != NUL) {
2018-05-24 11:51:35 +02:00
if (parmp->n_commands >= MAX_ARG_CMDS) {
mainerr(err_extra_cmd, NULL);
2018-05-24 11:51:35 +02:00
}
parmp->commands[parmp->n_commands++] = argv[0] + argv_idx;
2014-02-01 15:17:43 +01:00
argv_idx = -1;
break;
}
FALLTHROUGH;
}
2018-05-24 11:51:35 +02:00
case 'S': // "-S {file}" execute Vim script
case 'i': // "-i {shada}" use for ShaDa file
case 'u': // "-u {vimrc}" vim inits file
case 'U': // "-U {gvimrc}" gvim inits file
case 'W': { // "-W {scriptout}" overwrite
want_argument = true;
break;
2018-05-24 11:51:35 +02:00
}
2018-05-24 11:51:35 +02:00
default: {
mainerr(err_opt_unknown, argv[0]);
2018-05-24 11:51:35 +02:00
}
}
// Handle option arguments with argument.
if (want_argument) {
// Check for garbage immediately after the option letter.
if (argv[0][argv_idx] != NUL) {
mainerr(err_opt_garbage, argv[0]);
}
2018-05-24 11:51:35 +02:00
argc--;
if (argc < 1 && c != 'S') { // -S has an optional argument
mainerr(err_arg_missing, argv[0]);
2018-05-24 11:51:35 +02:00
}
argv++;
argv_idx = -1;
switch (c) {
2018-05-24 11:51:35 +02:00
case 'c': // "-c {command}" execute command
case 'S': { // "-S {file}" execute Vim script
if (parmp->n_commands >= MAX_ARG_CMDS) {
mainerr(err_extra_cmd, NULL);
2018-05-24 11:51:35 +02:00
}
2014-02-01 15:17:43 +01:00
if (c == 'S') {
2018-05-24 11:51:35 +02:00
char *a;
2014-02-01 15:17:43 +01:00
2018-05-24 11:51:35 +02:00
if (argc < 1) {
// "-S" without argument: use default session file name.
2014-02-01 15:17:43 +01:00
a = SESSION_FILE;
2018-05-24 11:51:35 +02:00
} else if (argv[0][0] == '-') {
// "-S" followed by another option: use default session file.
2014-02-01 15:17:43 +01:00
a = SESSION_FILE;
++argc;
--argv;
} else {
2014-02-01 15:17:43 +01:00
a = argv[0];
}
2018-05-24 11:51:35 +02:00
size_t s_size = STRLEN(a) + 4;
char *s = xmalloc(s_size);
snprintf(s, s_size, "so %s", a);
parmp->cmds_tofree[parmp->n_commands] = true;
parmp->commands[parmp->n_commands++] = s;
} else {
parmp->commands[parmp->n_commands++] = argv[0];
}
2014-02-01 15:17:43 +01:00
break;
2018-05-24 11:51:35 +02:00
}
2018-05-24 11:51:35 +02:00
case '-': {
if (strequal(argv[-1], "--cmd")) {
// "--cmd {command}" execute command
if (parmp->n_pre_commands >= MAX_ARG_CMDS) {
mainerr(err_extra_cmd, NULL);
}
parmp->pre_commands[parmp->n_pre_commands++] = argv[0];
} else if (strequal(argv[-1], "--listen")) {
// "--listen {address}"
parmp->listen_addr = argv[0];
2014-02-01 15:17:43 +01:00
}
// "--startuptime <file>" already handled
2014-02-01 15:17:43 +01:00
break;
2018-05-24 11:51:35 +02:00
}
2018-05-24 11:51:35 +02:00
case 'q': { // "-q {errorfile}" QuickFix mode
2014-02-01 15:17:43 +01:00
parmp->use_ef = (char_u *)argv[0];
break;
2018-05-24 11:51:35 +02:00
}
2018-05-24 11:51:35 +02:00
case 'i': { // "-i {shada}" use for shada
set_option_value("shadafile", 0L, argv[0], 0);
2014-02-01 15:17:43 +01:00
break;
2018-05-24 11:51:35 +02:00
}
2018-05-24 11:51:35 +02:00
case 's': { // "-s {scriptin}" read from script file
2014-02-01 15:17:43 +01:00
if (scriptin[0] != NULL) {
scripterror:
vim_snprintf((char *)IObuff, IOSIZE,
_("Attempt to open script file again: \"%s %s\"\n"),
argv[-1], argv[0]);
mch_errmsg((const char *)IObuff);
2014-02-01 15:17:43 +01:00
mch_exit(2);
}
int error;
if (strequal(argv[0], "-")) {
const int stdin_dup_fd = os_dup(STDIN_FILENO);
#ifdef WIN32
2018-05-24 11:51:35 +02:00
// Replace the original stdin with the console input handle.
close(STDIN_FILENO);
const HANDLE conin_handle =
CreateFile("CONIN$", GENERIC_READ | GENERIC_WRITE,
FILE_SHARE_READ, (LPSECURITY_ATTRIBUTES)NULL,
OPEN_EXISTING, 0, (HANDLE)NULL);
const int conin_fd = _open_osfhandle(conin_handle, _O_RDONLY);
assert(conin_fd == STDIN_FILENO);
#endif
FileDescriptor *const stdin_dup = file_open_fd_new(
&error, stdin_dup_fd, kFileReadOnly|kFileNonBlocking);
assert(stdin_dup != NULL);
scriptin[0] = stdin_dup;
} else if ((scriptin[0] = file_open_new(
&error, argv[0], kFileReadOnly|kFileNonBlocking, 0)) == NULL) {
vim_snprintf((char *)IObuff, IOSIZE,
_("Cannot open for reading: \"%s\": %s\n"),
argv[0], os_strerror(error));
mch_errmsg((const char *)IObuff);
2014-02-01 15:17:43 +01:00
mch_exit(2);
}
2014-05-10 06:11:34 +02:00
save_typebuf();
2014-02-01 15:17:43 +01:00
break;
2018-05-24 11:51:35 +02:00
}
2018-05-24 11:51:35 +02:00
case 't': { // "-t {tag}"
2014-02-01 15:17:43 +01:00
parmp->tagname = (char_u *)argv[0];
break;
2018-05-24 11:51:35 +02:00
}
case 'u': { // "-u {vimrc}" vim inits file
2015-05-13 21:29:49 +02:00
parmp->use_vimrc = argv[0];
2014-02-01 15:17:43 +01:00
break;
2018-05-24 11:51:35 +02:00
}
case 'U': { // "-U {gvimrc}" gvim inits file
2014-02-01 15:17:43 +01:00
break;
2018-05-24 11:51:35 +02:00
}
2018-05-24 11:51:35 +02:00
case 'w': { // "-w {nr}" 'window' value
// "-w {scriptout}" append to script file
if (ascii_isdigit(*((char_u *)argv[0]))) {
2014-02-01 15:17:43 +01:00
argv_idx = 0;
n = get_number_arg(argv[0], &argv_idx, 10);
set_option_value("window", n, NULL, 0);
2014-02-01 15:17:43 +01:00
argv_idx = -1;
break;
}
FALLTHROUGH;
}
2018-05-24 11:51:35 +02:00
case 'W': { // "-W {scriptout}" overwrite script file
if (scriptout != NULL) {
2014-02-01 15:17:43 +01:00
goto scripterror;
2018-05-24 11:51:35 +02:00
}
2014-02-01 15:17:43 +01:00
if ((scriptout = mch_fopen(argv[0],
c == 'w' ? APPENDBIN : WRITEBIN)) == NULL) {
mch_errmsg(_("Cannot open for script output: \""));
mch_errmsg(argv[0]);
mch_errmsg("\"\n");
mch_exit(2);
}
break;
2018-05-24 11:51:35 +02:00
}
}
}
2017-12-03 04:44:46 +01:00
} else { // File name argument.
argv_idx = -1; // skip to next argument
2017-12-03 04:44:46 +01:00
// Check for only one type of editing.
if (parmp->edit_type != EDIT_NONE
&& parmp->edit_type != EDIT_FILE
&& parmp->edit_type != EDIT_STDIN) {
mainerr(err_too_many_args, argv[0]);
2017-12-03 04:44:46 +01:00
}
parmp->edit_type = EDIT_FILE;
2017-12-03 04:44:46 +01:00
// Add the file to the global argument list.
ga_grow(&global_alist.al_ga, 1);
char_u *p = vim_strsave((char_u *)argv[0]);
if (parmp->diff_mode && os_isdir(p) && GARGCOUNT > 0
&& !os_isdir(alist_name(&GARGLIST[0]))) {
2017-12-03 04:44:46 +01:00
char_u *r = (char_u *)concat_fnames((char *)p,
(char *)path_tail(alist_name(&GARGLIST[0])), true);
xfree(p);
p = r;
}
#ifdef USE_FNAME_CASE
// Make the case of the file name match the actual file.
path_fix_case(p);
#endif
int alist_fnum_flag = edit_stdin(had_stdin_file, parmp)
2018-05-23 10:54:09 +02:00
? 1 // add buffer nr after exp.
: 2; // add buffer number now and use curbuf
alist_add(&global_alist, p, alist_fnum_flag);
}
2017-12-03 04:44:46 +01:00
// If there are no more letters after the current "-", go to next argument.
// argv_idx is set to -1 when the current argument is to be skipped.
if (argv_idx <= 0 || argv[0][argv_idx] == NUL) {
2017-12-03 04:44:46 +01:00
argc--;
argv++;
argv_idx = 1;
}
}
2017-12-03 04:44:46 +01:00
// If there is a "+123" or "-c" command, set v:swapcommand to the first one.
if (parmp->n_commands > 0) {
const size_t swcmd_len = STRLEN(parmp->commands[0]) + 3;
char *const swcmd = xmalloc(swcmd_len);
snprintf(swcmd, swcmd_len, ":%s\r", parmp->commands[0]);
set_vim_var_string(VV_SWAPCOMMAND, swcmd, -1);
xfree(swcmd);
}
// Handle "foo | nvim". EDIT_FILE may be overwritten now. #6299
if (edit_stdin(had_stdin_file, parmp)) {
2018-05-23 10:54:09 +02:00
parmp->edit_type = EDIT_STDIN;
}
2014-02-22 04:55:12 +01:00
TIME_MSG("parsing arguments");
}
/*
* Many variables are in "params" so that we can pass them to invoked
* functions without a lot of arguments. "argc" and "argv" are also
* copied, so that they can be changed. */
static void init_params(mparm_T *paramp, int argc, char **argv)
2014-02-22 04:55:12 +01:00
{
memset(paramp, 0, sizeof(*paramp));
2014-02-22 04:55:12 +01:00
paramp->argc = argc;
paramp->argv = argv;
paramp->use_debug_break_level = -1;
paramp->window_count = -1;
paramp->listen_addr = NULL;
2014-02-22 04:55:12 +01:00
}
/// Initialize global startuptime file if "--startuptime" passed as an argument.
static void init_startuptime(mparm_T *paramp)
2014-02-22 04:55:12 +01:00
{
for (int i = 1; i < paramp->argc; i++) {
2014-02-22 04:55:12 +01:00
if (STRICMP(paramp->argv[i], "--startuptime") == 0 && i + 1 < paramp->argc) {
time_fd = mch_fopen(paramp->argv[i + 1], "a");
2014-07-18 17:49:27 +02:00
time_start("--- NVIM STARTING ---");
2014-02-22 04:55:12 +01:00
break;
}
}
2014-02-22 04:55:12 +01:00
starttime = time(NULL);
}
static void check_and_set_isatty(mparm_T *paramp)
2014-02-22 04:55:12 +01:00
{
stdin_isatty
= paramp->input_isatty = os_isatty(STDIN_FILENO);
stdout_isatty
= paramp->output_isatty = os_isatty(STDOUT_FILENO);
paramp->err_isatty = os_isatty(STDERR_FILENO);
2018-01-17 12:42:23 +01:00
#ifndef WIN32
int tty_fd = paramp->input_isatty
? STDIN_FILENO
: (paramp->output_isatty
? STDOUT_FILENO
: (paramp->err_isatty ? STDERR_FILENO : -1));
pty_process_save_termios(tty_fd);
#endif
2014-02-22 04:55:12 +01:00
TIME_MSG("window checked");
}
// Sets v:progname and v:progpath. Also modifies $PATH on Windows.
static void init_path(const char *exename)
FUNC_ATTR_NONNULL_ALL
{
char exepath[MAXPATHL] = { 0 };
size_t exepathlen = MAXPATHL;
// Make v:progpath absolute.
if (os_exepath(exepath, &exepathlen) != 0) {
// Fall back to argv[0]. Missing procfs? #6734
path_guess_exepath(exename, exepath, sizeof(exepath));
}
set_vim_var_string(VV_PROGPATH, exepath, -1);
set_vim_var_string(VV_PROGNAME, (char *)path_tail((char_u *)exename), -1);
#ifdef WIN32
// Append the process start directory to $PATH, so that ":!foo" finds tools
// shipped with Windows package. This also mimics SearchPath().
os_setenv_append_path(exepath);
#endif
}
/// Get filename from command line, if any.
2016-02-09 20:55:40 +01:00
static char_u *get_fname(mparm_T *parmp, char_u *cwd)
2014-02-22 04:55:12 +01:00
{
return alist_name(&GARGLIST[0]);
}
/*
* Decide about window layout for diff mode after reading vimrc.
*/
static void set_window_layout(mparm_T *paramp)
2014-02-22 04:55:12 +01:00
{
if (paramp->diff_mode && paramp->window_layout == 0) {
if (diffopt_horizontal())
paramp->window_layout = WIN_HOR; /* use horizontal split */
else
paramp->window_layout = WIN_VER; /* use vertical split */
}
}
/*
* Read all the plugin files.
* Only when compiled with +eval, since most plugins need it.
*/
static void load_plugins(void)
2014-02-22 04:55:12 +01:00
{
if (p_lpl) {
char_u *rtp_copy = NULL;
// First add all package directories to 'runtimepath', so that their
// autoload directories can be found. Only if not done already with a
// :packloadall command.
// Make a copy of 'runtimepath', so that source_runtime does not use the
// pack directories.
if (!did_source_packages) {
rtp_copy = vim_strsave(p_rtp);
add_pack_start_dirs();
}
source_in_path(rtp_copy == NULL ? p_rtp : rtp_copy,
(char_u *)"plugin/**/*.vim", // NOLINT
DIP_ALL | DIP_NOAFTER);
2014-02-22 04:55:12 +01:00
TIME_MSG("loading plugins");
xfree(rtp_copy);
// Only source "start" packages if not done already with a :packloadall
// command.
if (!did_source_packages) {
load_start_packages();
}
TIME_MSG("loading packages");
source_runtime((char_u *)"plugin/**/*.vim", DIP_ALL | DIP_AFTER);
TIME_MSG("loading after plugins");
2014-02-22 04:55:12 +01:00
}
}
/*
* "-q errorfile": Load the error file now.
* If the error file can't be read, exit before doing anything else.
*/
static void handle_quickfix(mparm_T *paramp)
2014-02-22 04:55:12 +01:00
{
if (paramp->edit_type == EDIT_QF) {
if (paramp->use_ef != NULL)
set_string_option_direct((char_u *)"ef", -1,
paramp->use_ef, OPT_FREE, SID_CARG);
vim_snprintf((char *)IObuff, IOSIZE, "cfile %s", p_ef);
if (qf_init(NULL, p_ef, p_efm, true, IObuff, p_menc) < 0) {
msg_putchar('\n');
2014-02-22 04:55:12 +01:00
mch_exit(3);
}
TIME_MSG("reading errorfile");
}
}
/*
* Need to jump to the tag before executing the '-c command'.
* Makes "vim -c '/return' -t main" work.
*/
static void handle_tag(char_u *tagname)
2014-02-22 04:55:12 +01:00
{
if (tagname != NULL) {
swap_exists_did_quit = FALSE;
vim_snprintf((char *)IObuff, IOSIZE, "ta %s", tagname);
do_cmdline_cmd((char *)IObuff);
2014-02-22 04:55:12 +01:00
TIME_MSG("jumping to tag");
/* If the user doesn't want to edit the file then we quit here. */
if (swap_exists_did_quit)
getout(1);
}
}
/// Read text from stdin.
static void read_stdin(void)
{
2017-12-03 04:44:46 +01:00
// When getting the ATTENTION prompt here, use a dialog.
swap_exists_action = SEA_DIALOG;
2017-12-03 04:44:46 +01:00
no_wait_return = true;
int save_msg_didany = msg_didany;
set_buflisted(true);
(void)open_buffer(true, NULL, 0); // create memfile and read file
if (BUFEMPTY() && curbuf->b_next != NULL) {
// stdin was empty, go to buffer 2 (e.g. "echo file1 | xargs nvim"). #8561
do_cmdline_cmd("silent! bnext");
// Delete the empty stdin buffer.
do_cmdline_cmd("bwipeout 1");
}
2017-12-03 04:44:46 +01:00
no_wait_return = false;
msg_didany = save_msg_didany;
TIME_MSG("reading stdin");
check_swap_exists_action();
}
/*
* Create the requested number of windows and edit buffers in them.
* Also does recovery if "recoverymode" set.
*/
static void create_windows(mparm_T *parmp)
{
int dorewind;
int done = 0;
/*
* Create the number of windows that was requested.
*/
if (parmp->window_count == -1) /* was not set */
parmp->window_count = 1;
if (parmp->window_count == 0)
parmp->window_count = GARGCOUNT;
if (parmp->window_count > 1) {
// Don't change the windows if there was a command in vimrc that
// already split some windows
if (parmp->window_layout == 0)
parmp->window_layout = WIN_HOR;
if (parmp->window_layout == WIN_TABS) {
parmp->window_count = make_tabpages(parmp->window_count);
TIME_MSG("making tab pages");
} else if (firstwin->w_next == NULL) {
parmp->window_count = make_windows(parmp->window_count,
parmp->window_layout == WIN_VER);
TIME_MSG("making windows");
} else
parmp->window_count = win_count();
} else
parmp->window_count = 1;
if (recoverymode) { /* do recover */
msg_scroll = TRUE; /* scroll message up */
ml_recover();
if (curbuf->b_ml.ml_mfp == NULL) /* failed */
getout(1);
do_modelines(0); /* do modelines */
} else {
// Open a buffer for windows that don't have one yet.
// Commands in the vimrc might have loaded a file or split the window.
// Watch out for autocommands that delete a window.
//
// Don't execute Win/Buf Enter/Leave autocommands here
++autocmd_no_enter;
++autocmd_no_leave;
dorewind = TRUE;
while (done++ < 1000) {
if (dorewind) {
if (parmp->window_layout == WIN_TABS)
goto_tabpage(1);
else
curwin = firstwin;
} else if (parmp->window_layout == WIN_TABS) {
if (curtab->tp_next == NULL)
break;
goto_tabpage(0);
} else {
if (curwin->w_next == NULL)
break;
curwin = curwin->w_next;
}
dorewind = FALSE;
curbuf = curwin->w_buffer;
if (curbuf->b_ml.ml_mfp == NULL) {
// Set 'foldlevel' to 'foldlevelstart' if it's not negative..
if (p_fdls >= 0) {
curwin->w_p_fdl = p_fdls;
}
// When getting the ATTENTION prompt here, use a dialog.
swap_exists_action = SEA_DIALOG;
set_buflisted(TRUE);
/* create memfile, read file */
(void)open_buffer(FALSE, NULL, 0);
if (swap_exists_action == SEA_QUIT) {
if (got_int || only_one_window()) {
/* abort selected or quit and only one window */
did_emsg = FALSE; /* avoid hit-enter prompt */
getout(1);
}
/* We can't close the window, it would disturb what
* happens next. Clear the file name and set the arg
* index to -1 to delete it later. */
setfname(curbuf, NULL, NULL, FALSE);
curwin->w_arg_idx = -1;
swap_exists_action = SEA_NONE;
} else
handle_swap_exists(NULL);
dorewind = TRUE; /* start again */
}
os_breakcheck();
if (got_int) {
(void)vgetc(); /* only break the file loading, not the rest */
break;
}
}
if (parmp->window_layout == WIN_TABS)
goto_tabpage(1);
else
curwin = firstwin;
curbuf = curwin->w_buffer;
--autocmd_no_enter;
--autocmd_no_leave;
}
}
/// If opened more than one window, start editing files in the other
/// windows. make_windows() has already opened the windows.
static void edit_buffers(mparm_T *parmp, char_u *cwd)
{
int arg_idx; /* index in argument list */
int i;
bool advance = true;
win_T *win;
/*
* Don't execute Win/Buf Enter/Leave autocommands here
*/
++autocmd_no_enter;
++autocmd_no_leave;
/* When w_arg_idx is -1 remove the window (see create_windows()). */
if (curwin->w_arg_idx == -1) {
win_close(curwin, true);
advance = false;
}
arg_idx = 1;
for (i = 1; i < parmp->window_count; ++i) {
if (cwd != NULL) {
os_chdir((char *)cwd);
}
// When w_arg_idx is -1 remove the window (see create_windows()).
if (curwin->w_arg_idx == -1) {
2018-09-06 05:04:54 +02:00
arg_idx++;
win_close(curwin, true);
advance = false;
continue;
}
if (advance) {
if (parmp->window_layout == WIN_TABS) {
if (curtab->tp_next == NULL) /* just checking */
break;
goto_tabpage(0);
} else {
if (curwin->w_next == NULL) /* just checking */
break;
win_enter(curwin->w_next, false);
}
}
advance = true;
// Only open the file if there is no file in this window yet (that can
// happen when vimrc contains ":sall").
if (curbuf == firstwin->w_buffer || curbuf->b_ffname == NULL) {
curwin->w_arg_idx = arg_idx;
/* Edit file from arg list, if there is one. When "Quit" selected
* at the ATTENTION prompt close the window. */
swap_exists_did_quit = FALSE;
(void)do_ecmd(0, arg_idx < GARGCOUNT
? alist_name(&GARGLIST[arg_idx]) : NULL,
NULL, NULL, ECMD_LASTL, ECMD_HIDE, curwin);
if (swap_exists_did_quit) {
/* abort or quit selected */
if (got_int || only_one_window()) {
/* abort selected and only one window */
did_emsg = FALSE; /* avoid hit-enter prompt */
getout(1);
}
win_close(curwin, true);
advance = false;
}
2018-09-30 04:11:50 +02:00
if (arg_idx == GARGCOUNT - 1) {
2018-09-29 22:53:55 +02:00
arg_had_last = true;
2018-09-30 04:11:50 +02:00
}
arg_idx++;
}
os_breakcheck();
if (got_int) {
(void)vgetc(); /* only break the file loading, not the rest */
break;
}
}
if (parmp->window_layout == WIN_TABS)
goto_tabpage(1);
--autocmd_no_enter;
/* make the first window the current window */
win = firstwin;
/* Avoid making a preview window the current window. */
while (win->w_p_pvw) {
win = win->w_next;
if (win == NULL) {
win = firstwin;
break;
}
}
win_enter(win, false);
--autocmd_no_leave;
TIME_MSG("editing files in windows");
if (parmp->window_count > 1 && parmp->window_layout != WIN_TABS)
win_equal(curwin, false, 'b'); /* adjust heights */
}
/*
* Execute the commands from --cmd arguments "cmds[cnt]".
*/
static void exe_pre_commands(mparm_T *parmp)
{
char **cmds = parmp->pre_commands;
int cnt = parmp->n_pre_commands;
int i;
if (cnt > 0) {
curwin->w_cursor.lnum = 0; /* just in case.. */
sourcing_name = (char_u *)_("pre-vimrc command line");
current_SID = SID_CMDARG;
for (i = 0; i < cnt; ++i)
do_cmdline_cmd(cmds[i]);
sourcing_name = NULL;
current_SID = 0;
TIME_MSG("--cmd commands");
}
}
/*
* Execute "+", "-c" and "-S" arguments.
*/
static void exe_commands(mparm_T *parmp)
{
int i;
/*
* We start commands on line 0, make "vim +/pat file" match a
* pattern on line 1. But don't move the cursor when an autocommand
* with g`" was used.
*/
msg_scroll = TRUE;
if (parmp->tagname == NULL && curwin->w_cursor.lnum <= 1)
curwin->w_cursor.lnum = 0;
sourcing_name = (char_u *)"command line";
current_SID = SID_CARG;
for (i = 0; i < parmp->n_commands; ++i) {
do_cmdline_cmd(parmp->commands[i]);
if (parmp->cmds_tofree[i])
xfree(parmp->commands[i]);
}
sourcing_name = NULL;
current_SID = 0;
if (curwin->w_cursor.lnum == 0)
curwin->w_cursor.lnum = 1;
if (!exmode_active)
msg_scroll = FALSE;
/* When started with "-q errorfile" jump to first error again. */
if (parmp->edit_type == EDIT_QF)
qf_jump(NULL, 0, 0, FALSE);
TIME_MSG("executing command arguments");
}
/// Source system-wide vimrc if built with one defined
///
/// Does one of the following things, stops after whichever succeeds:
///
/// 1. Source system vimrc file from $XDG_CONFIG_DIRS/nvim/sysinit.vim
/// 2. Source system vimrc file from $VIM
static void do_system_initialization(void)
{
char *const config_dirs = stdpaths_get_xdg_var(kXDGConfigDirs);
if (config_dirs != NULL) {
const void *iter = NULL;
const char path_tail[] = {
'n', 'v', 'i', 'm', PATHSEP,
's', 'y', 's', 'i', 'n', 'i', 't', '.', 'v', 'i', 'm', NUL
};
do {
const char *dir;
size_t dir_len;
iter = vim_env_iter(':', config_dirs, iter, &dir, &dir_len);
if (dir == NULL || dir_len == 0) {
break;
}
char *vimrc = xmalloc(dir_len + sizeof(path_tail) + 1);
memcpy(vimrc, dir, dir_len);
vimrc[dir_len] = PATHSEP;
memcpy(vimrc + dir_len + 1, path_tail, sizeof(path_tail));
if (do_source((char_u *)vimrc, false, DOSO_NONE) != FAIL) {
xfree(vimrc);
xfree(config_dirs);
return;
}
xfree(vimrc);
} while (iter != NULL);
xfree(config_dirs);
}
#ifdef SYS_VIMRC_FILE
// Get system wide defaults, if the file name is defined.
(void)do_source((char_u *)SYS_VIMRC_FILE, false, DOSO_NONE);
#endif
}
/// Source vimrc or do other user initialization
///
/// Does one of the following things, stops after whichever succeeds:
///
/// 1. Execution of VIMINIT environment variable.
/// 2. Sourcing user vimrc file ($XDG_CONFIG_HOME/nvim/init.vim).
/// 3. Sourcing other vimrc files ($XDG_CONFIG_DIRS[1]/nvim/init.vim, …).
/// 4. Execution of EXINIT environment variable.
///
/// @return True if it is needed to attempt to source exrc file according to
/// 'exrc' option definition.
static bool do_user_initialization(void)
FUNC_ATTR_WARN_UNUSED_RESULT
{
bool do_exrc = p_exrc;
if (execute_env("VIMINIT") == OK) {
do_exrc = p_exrc;
return do_exrc;
}
char_u *user_vimrc = (char_u *)stdpaths_user_conf_subpath("init.vim");
if (do_source(user_vimrc, true, DOSO_VIMRC) != FAIL) {
do_exrc = p_exrc;
if (do_exrc) {
do_exrc = (path_full_compare((char_u *)VIMRC_FILE, user_vimrc, false)
!= kEqualFiles);
}
xfree(user_vimrc);
return do_exrc;
}
xfree(user_vimrc);
char *const config_dirs = stdpaths_get_xdg_var(kXDGConfigDirs);
if (config_dirs != NULL) {
const void *iter = NULL;
do {
const char *dir;
size_t dir_len;
2017-05-15 03:54:52 +02:00
iter = vim_env_iter(':', config_dirs, iter, &dir, &dir_len);
if (dir == NULL || dir_len == 0) {
break;
}
const char path_tail[] = { 'n', 'v', 'i', 'm', PATHSEP,
'i', 'n', 'i', 't', '.', 'v', 'i', 'm', NUL };
char *vimrc = xmalloc(dir_len + sizeof(path_tail) + 1);
memmove(vimrc, dir, dir_len);
vimrc[dir_len] = PATHSEP;
memmove(vimrc + dir_len + 1, path_tail, sizeof(path_tail));
if (do_source((char_u *) vimrc, true, DOSO_VIMRC) != FAIL) {
do_exrc = p_exrc;
if (do_exrc) {
do_exrc = (path_full_compare((char_u *)VIMRC_FILE, (char_u *)vimrc,
false) != kEqualFiles);
}
xfree(vimrc);
xfree(config_dirs);
return do_exrc;
}
xfree(vimrc);
} while (iter != NULL);
xfree(config_dirs);
}
if (execute_env("EXINIT") == OK) {
do_exrc = p_exrc;
return do_exrc;
}
return do_exrc;
}
/// Source startup scripts
static void source_startup_scripts(const mparm_T *const parmp)
FUNC_ATTR_NONNULL_ALL
{
2018-05-24 11:51:35 +02:00
// If -u given, use only the initializations from that file and nothing else.
if (parmp->use_vimrc != NULL) {
2018-05-24 11:51:35 +02:00
if (strequal(parmp->use_vimrc, "NONE")
|| strequal(parmp->use_vimrc, "NORC")) {
// Do nothing.
} else {
if (do_source((char_u *)parmp->use_vimrc, false, DOSO_NONE) != OK) {
EMSG2(_("E282: Cannot read from \"%s\""), parmp->use_vimrc);
2018-05-24 11:51:35 +02:00
}
}
} else if (!silent_mode) {
do_system_initialization();
if (do_user_initialization()) {
// Read initialization commands from ".vimrc" or ".exrc" in current
// directory. This is only done if the 'exrc' option is set.
// Because of security reasons we disallow shell and write commands
// now, except for unix if the file is owned by the user or 'secure'
// option has been reset in environment of global "exrc" or "vimrc".
// Only do this if VIMRC_FILE is not the same as vimrc file sourced in
// do_user_initialization.
#if defined(UNIX)
// If vimrc file is not owned by user, set 'secure' mode.
if (!file_owned(VIMRC_FILE))
#endif
2014-02-01 15:17:43 +01:00
secure = p_secure;
if (do_source((char_u *)VIMRC_FILE, true, DOSO_VIMRC) == FAIL) {
#if defined(UNIX)
// if ".exrc" is not owned by user set 'secure' mode
if (!file_owned(EXRC_FILE)) {
secure = p_secure;
} else {
secure = 0;
}
#endif
(void)do_source((char_u *)EXRC_FILE, false, DOSO_NONE);
}
}
if (secure == 2) {
need_wait_return = true;
}
secure = 0;
}
TIME_MSG("sourcing vimrc file(s)");
}
/// Get an environment variable, and execute it as Ex commands.
///
/// @param env environment variable to execute
///
/// @return FAIL if the environment variable was not executed,
/// OK otherwise.
static int execute_env(char *env)
FUNC_ATTR_NONNULL_ALL
{
const char *initstr = os_getenv(env);
if (initstr != NULL) {
char_u *save_sourcing_name = sourcing_name;
linenr_T save_sourcing_lnum = sourcing_lnum;
sourcing_name = (char_u *)env;
sourcing_lnum = 0;
scid_T save_sid = current_SID;
current_SID = SID_ENV;
do_cmdline_cmd((char *)initstr);
sourcing_name = save_sourcing_name;
sourcing_lnum = save_sourcing_lnum;
current_SID = save_sid;
return OK;
}
return FAIL;
}
#ifdef UNIX
/// Checks if user owns file.
/// Use both uv_fs_stat() and uv_fs_lstat() through os_fileinfo() and
/// os_fileinfo_link() respectively for extra security.
static bool file_owned(const char *fname)
{
assert(fname != NULL);
uid_t uid = getuid();
FileInfo file_info;
bool file_owned = os_fileinfo(fname, &file_info)
&& file_info.stat.st_uid == uid;
bool link_owned = os_fileinfo_link(fname, &file_info)
&& file_info.stat.st_uid == uid;
return file_owned && link_owned;
}
#endif
/// Prints the following then exits:
/// - An error message `errstr`
/// - A string `str` if not null
///
/// @param errstr string containing an error message
/// @param str string to append to the primary error message, or NULL
static void mainerr(const char *errstr, const char *str)
{
char *prgname = (char *)path_tail((char_u *)argv0);
signal_stop(); // kill us with CTRL-C here, if you like
mch_errmsg(prgname);
mch_errmsg(": ");
mch_errmsg(_(errstr));
if (str != NULL) {
mch_errmsg(": \"");
mch_errmsg(str);
mch_errmsg("\"");
}
mch_errmsg(_("\nMore info with \""));
mch_errmsg(prgname);
mch_errmsg(" -h\"\n");
mch_exit(1);
}
/// Prints version information for "nvim -v" or "nvim --version".
static void version(void)
{
info_message = TRUE; // use mch_msg(), not mch_errmsg()
list_version();
msg_putchar('\n');
msg_didout = FALSE;
}
/// Prints help message for "nvim -h" or "nvim --help".
static void usage(void)
{
signal_stop(); // kill us with CTRL-C here, if you like
mch_msg(_("Usage:\n"));
mch_msg(_(" nvim [options] [file ...] Edit file(s)\n"));
mch_msg(_(" nvim [options] -t <tag> Edit file where tag is defined\n"));
mch_msg(_(" nvim [options] -q [errorfile] Edit file with first error\n"));
mch_msg(_("\nOptions:\n"));
mch_msg(_(" -- Only file names after this\n"));
mch_msg(_(" + Start at end of file\n"));
mch_msg(_(" --cmd <cmd> Execute <cmd> before any config\n"));
mch_msg(_(" +<cmd>, -c <cmd> Execute <cmd> after config and first file\n"));
mch_msg("\n");
mch_msg(_(" -b Binary mode\n"));
mch_msg(_(" -d Diff mode\n"));
mch_msg(_(" -e, -E Ex mode\n"));
mch_msg(_(" -es, -Es Silent (batch) mode\n"));
mch_msg(_(" -h, --help Print this help message\n"));
mch_msg(_(" -i <shada> Use this shada file\n"));
mch_msg(_(" -m Modifications (writing files) not allowed\n"));
mch_msg(_(" -M Modifications in text not allowed\n"));
mch_msg(_(" -n No swap file, use memory only\n"));
mch_msg(_(" -o[N] Open N windows (default: one per file)\n"));
mch_msg(_(" -O[N] Open N vertical windows (default: one per file)\n"));
mch_msg(_(" -p[N] Open N tab pages (default: one per file)\n"));
mch_msg(_(" -r, -L List swap files\n"));
mch_msg(_(" -r <file> Recover edit state for this file\n"));
mch_msg(_(" -R Read-only mode\n"));
mch_msg(_(" -S <session> Source <session> after loading the first file\n"));
mch_msg(_(" -s <scriptin> Read Normal mode commands from <scriptin>\n"));
mch_msg(_(" -u <config> Use this config file\n"));
mch_msg(_(" -v, --version Print version information\n"));
mch_msg(_(" -V[N][file] Verbose [level][file]\n"));
mch_msg(_(" -Z Restricted mode\n"));
mch_msg("\n");
mch_msg(_(" --api-info Write msgpack-encoded API metadata to stdout\n"));
mch_msg(_(" --embed Use stdin/stdout as a msgpack-rpc channel\n"));
mch_msg(_(" --headless Don't start a user interface\n"));
mch_msg(_(" --listen <address> Serve RPC API from this address\n"));
mch_msg(_(" --noplugin Don't load plugins\n"));
mch_msg(_(" --startuptime <file> Write startup timing messages to <file>\n"));
mch_msg(_("\nSee \":help startup-options\" for all options.\n"));
}
/*
* Check the result of the ATTENTION dialog:
* When "Quit" selected, exit Vim.
* When "Recover" selected, recover the file.
*/
static void check_swap_exists_action(void)
{
if (swap_exists_action == SEA_QUIT)
getout(1);
handle_swap_exists(NULL);
}