mirror of
https://github.com/neovim/neovim
synced 2025-07-16 01:01:49 +00:00
Possibly dialog code is messages.c could be moved here as well. misc1.c is now empty, so delete it.
124 lines
3.5 KiB
C
124 lines
3.5 KiB
C
// 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
|
|
|
|
#include "nvim/aucmd.h"
|
|
#include "nvim/buffer.h"
|
|
#include "nvim/eval.h"
|
|
#include "nvim/ex_docmd.h"
|
|
#include "nvim/ex_getln.h"
|
|
#include "nvim/fileio.h"
|
|
#include "nvim/main.h"
|
|
#include "nvim/os/os.h"
|
|
#include "nvim/ui.h"
|
|
#include "nvim/vim.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "aucmd.c.generated.h"
|
|
#endif
|
|
|
|
void do_autocmd_uienter(uint64_t chanid, bool attached)
|
|
{
|
|
static bool recursive = false;
|
|
|
|
if (recursive) {
|
|
return; // disallow recursion
|
|
}
|
|
recursive = true;
|
|
|
|
save_v_event_T save_v_event;
|
|
dict_T *dict = get_v_event(&save_v_event);
|
|
assert(chanid < VARNUMBER_MAX);
|
|
tv_dict_add_nr(dict, S_LEN("chan"), (varnumber_T)chanid);
|
|
tv_dict_set_keys_readonly(dict);
|
|
apply_autocmds(attached ? EVENT_UIENTER : EVENT_UILEAVE,
|
|
NULL, NULL, false, curbuf);
|
|
restore_v_event(dict, &save_v_event);
|
|
|
|
recursive = false;
|
|
}
|
|
|
|
void init_default_autocmds(void)
|
|
{
|
|
// open terminals when opening files that start with term://
|
|
#define PROTO "term://"
|
|
do_cmdline_cmd("augroup nvim_terminal");
|
|
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': expand(get(matchlist(expand(\"<amatch>\"), "
|
|
"'\\c\\m" PROTO "\\(.\\{-}\\)//'), 1, ''))})"
|
|
"|endif");
|
|
do_cmdline_cmd("augroup END");
|
|
#undef PROTO
|
|
|
|
// limit syntax synchronization in the command window
|
|
do_cmdline_cmd("augroup nvim_cmdwin");
|
|
do_cmdline_cmd("autocmd! CmdwinEnter [:>] syntax sync minlines=1 maxlines=1");
|
|
do_cmdline_cmd("augroup END");
|
|
}
|
|
|
|
static void focusgained_event(void **argv)
|
|
{
|
|
bool *gainedp = argv[0];
|
|
do_autocmd_focusgained(*gainedp);
|
|
xfree(gainedp);
|
|
}
|
|
void aucmd_schedule_focusgained(bool gained)
|
|
{
|
|
bool *gainedp = xmalloc(sizeof(*gainedp));
|
|
*gainedp = gained;
|
|
loop_schedule_deferred(&main_loop,
|
|
event_create(focusgained_event, 1, gainedp));
|
|
}
|
|
|
|
static void do_autocmd_focusgained(bool gained)
|
|
{
|
|
static bool recursive = false;
|
|
static Timestamp last_time = (time_t)0;
|
|
bool need_redraw = false;
|
|
|
|
if (recursive) {
|
|
return; // disallow recursion
|
|
}
|
|
recursive = true;
|
|
need_redraw |= apply_autocmds((gained ? EVENT_FOCUSGAINED : EVENT_FOCUSLOST),
|
|
NULL, NULL, false, curbuf);
|
|
|
|
// When activated: Check if any file was modified outside of Vim.
|
|
// Only do this when not done within the last two seconds as:
|
|
// 1. Some filesystems have modification time granularity in seconds. Fat32
|
|
// has a granularity of 2 seconds.
|
|
// 2. We could get multiple notifications in a row.
|
|
if (gained && last_time + (Timestamp)2000 < os_now()) {
|
|
need_redraw = check_timestamps(true);
|
|
last_time = os_now();
|
|
}
|
|
|
|
if (need_redraw) {
|
|
// Something was executed, make sure the cursor is put back where it
|
|
// belongs.
|
|
need_wait_return = false;
|
|
|
|
if (State & CMDLINE) {
|
|
redrawcmdline();
|
|
} else if ((State & NORMAL) || (State & INSERT)) {
|
|
if (must_redraw != 0) {
|
|
update_screen(0);
|
|
}
|
|
|
|
setcursor();
|
|
}
|
|
|
|
ui_flush();
|
|
}
|
|
|
|
if (need_maketitle) {
|
|
maketitle();
|
|
}
|
|
|
|
recursive = false;
|
|
}
|