nvim-tree/nvim-tree.lua

repeated calls to git rev-parse --show-toplevel for untracked directories

przepompownia opened this issue · 13 comments

Description

Before excluding /tmp from git watcher I noticed cursor flickering and unneeded autocommands repeated for every few seconds. It happens only when I use Nvim as root and some additional root-owned directories are accessible in /tmp.

nvim-tree-flicker3.mp4
nvim-tree-flicker2.mp4

It's a side effect of checking why NvimTree switches the root directory without user interaction.

Neovim version

v0.12.0-dev-914+gb79ff967ac

Operating system and version

Debian Sid

Windows variant

No response

nvim-tree version

65bae44

Clean room replication

local thisInitFile = debug.getinfo(1).source:match('@?(.*)')
local cwd = vim.fs.dirname(thisInitFile)
local appname = vim.env.NVIM_APPNAME or 'nvim'

vim.env.XDG_CONFIG_HOME = cwd
vim.env.XDG_DATA_HOME = vim.fs.joinpath(cwd, '.xdg', 'data')
vim.env.XDG_STATE_HOME = vim.fs.joinpath(cwd, '.xdg', 'state')
vim.env.XDG_CACHE_HOME = vim.fs.joinpath(cwd, '.xdg', 'cache')
vim.fn.mkdir(vim.fs.joinpath(vim.env.XDG_CACHE_HOME, appname), 'p')
local stdPathConfig = vim.fn.stdpath('config')

vim.opt.runtimepath:prepend(stdPathConfig)
vim.opt.packpath:prepend(stdPathConfig)

local extuiExists, extui = pcall(require, 'vim._extui')
if extuiExists then
  extui.enable({enable = true, msg = {target = 'msg'}})
end

local function gitClone(url, installPath, branch)
  if vim.fn.isdirectory(installPath) ~= 0 then
    return
  end

  local command = {'git', 'clone', '--', url, installPath}
  if branch then
    table.insert(command, 3, '--branch')
    table.insert(command, 4, branch)
  end

  vim.notify(('Cloning %s dependency into %s...'):format(url, installPath), vim.log.levels.INFO, {})
  local sysObj = vim.system(command, {}):wait()
  if sysObj.code ~= 0 then
    error(sysObj.stderr)
  end
  vim.notify(sysObj.stdout)
  vim.notify(sysObj.stderr, vim.log.levels.WARN)
end

local pluginsPath = vim.fs.joinpath(cwd, 'nvim/pack/plugins/opt')
vim.fn.mkdir(pluginsPath, 'p')
pluginsPath = vim.uv.fs_realpath(pluginsPath)

--- @type table<string, {url:string, branch: string?}>
local plugins = {
  ['nvim-tree'] = {url = 'https://github.com/przepompownia/nvim-tree.lua'},
}

for name, repo in pairs(plugins) do
  local installPath = vim.fs.joinpath(pluginsPath, name)
  gitClone(repo.url, installPath, repo.branch)
  vim.opt.runtimepath:append(installPath)
end

vim.api.nvim_create_autocmd('UIEnter', {
  once = true,
  callback = function ()
    require('nvim-tree').setup({
    })
  end,
})

vim._extui is used only for convenience and isn't necessary.

Steps to reproduce

With the above init.lua (and probably specific /tmp subdirs generated by systemd services) I need the following steps (as root only):

  • nvim --clean -u init.lua
  • :NvimTreeOpen /tmp
  • observe flickering, and optionally autocommand logs with set verbose=9

I'm aware that the reproduction can depend on the presence of some specific directories. At the moment I have no idea how to create reproducible directory structure for a regular user.

Expected behavior

No unneeded events and flickering.

Actual behavior

As in the title and description. Flickering continues even after closing NvimTree, and seems to be related to executing git command (don't know why only on the *apache* subdirectory).

I'm not able to replicate, however I use a very minimal arch system.

Please run with a log file nvim -V9/root/vimlog so that we can see all vim operations that are occurring.

Please run with nvim-tree logging enabled so that we may see what tree actions that are occurring.

log = {
  enable = true,
  truncate = true,
  types = {
    git = true,
    profile = true,
    watcher = true,
  },
},

please.

verbose log
sourcing "nvim_exec2()"
finished sourcing nvim_exec2()
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/ftplugin.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/ftplugin.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/indent.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/indent.vim
sourcing "init.lua"
finished sourcing init.lua
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/filetype.lua"
line 0: sourcing "nvim_exec2() called at ..../tmp/nvim/builds/from-src/share/nvim/runtime/filetype.lua:0"
not found in runtime path: "ftdetect/*.{vim,lua}"
finished sourcing nvim_exec2() called at ..../tmp/nvim/builds/from-src/share/nvim/runtime/filetype.lua:0
continuing in ..../tmp/nvim/builds/from-src/share/nvim/runtime/filetype.lua
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/filetype.lua
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/syntax/syntax.vim"
line 20: sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/syntax/synload.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/syntax/synload.vim
continuing in ..../tmp/nvim/builds/from-src/share/nvim/runtime/syntax/syntax.vim
Executing FileType Autocommands for "*"
autocommand if !exists('b:ts_highlight') | 0verbose exe "set syntax=" . expand("<amatch>") | endif

finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/syntax/syntax.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/gzip.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/gzip.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/matchit.vim"
not found in 'packpath': "pack/*/start/matchit"
line 3: sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/pack/dist/opt/matchit/plugin/matchit.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/pack/dist/opt/matchit/plugin/matchit.vim
continuing in ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/matchit.vim
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/matchit.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/matchparen.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/matchparen.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/netrwPlugin.vim"
not found in 'packpath': "pack/*/start/netrw"
line 7: sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/pack/dist/opt/netrw/plugin/netrwPlugin.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/pack/dist/opt/netrw/plugin/netrwPlugin.vim
continuing in ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/netrwPlugin.vim
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/netrwPlugin.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/rplugin.vim"
  1: .../vim/_defaults.lua
  2: ..../tmp/nvim/builds/from-src/share/nvim/runtime/ftplugin.vim
  3: ..../tmp/nvim/builds/from-src/share/nvim/runtime/indent.vim
  4: .../init.lua
  5: ..../tmp/nvim/builds/from-src/share/nvim/runtime/lua/vim/_extui.lua
  6: ..../tmp/nvim/builds/from-src/share/nvim/runtime/filetype.lua
  7: ..../tmp/nvim/builds/from-src/share/nvim/runtime/syntax/syntax.vim
  8: ..../tmp/nvim/builds/from-src/share/nvim/runtime/syntax/synload.vim
  9: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/gzip.vim
 10: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/matchit.vim
 11: ..../tmp/nvim/builds/from-src/share/nvim/runtime/pack/dist/opt/matchit/plugin/matchit.vim
 12: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/matchparen.vim
 13: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/netrwPlugin.vim
 14: ..../tmp/nvim/builds/from-src/share/nvim/runtime/pack/dist/opt/netrw/plugin/netrwPlugin.vim
 15: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/rplugin.vim
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/rplugin.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/spellfile.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/spellfile.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/tarPlugin.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/tarPlugin.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/tutor.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/tutor.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/zipPlugin.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/zipPlugin.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/editorconfig.lua"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/editorconfig.lua
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/man.lua"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/man.lua
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/nvim/net.lua"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/nvim/net.lua
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/osc52.lua"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/osc52.lua
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/shada.lua"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/shada.lua
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/tohtml.lua"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/tohtml.lua
not found in 'packpath': "start/*"
not found in runtime path: "plugin/**/*"
Reading ShaDa file ".../.xdg/state/nvim/shada/main.shada" info marks oldfiles
Executing BufWinEnter Autocommands for "*"
autocommand autocmd SafeState * ++once call s:Highlight_Matching_Pair()

Executing BufEnter Autocommands for "*"
autocommand sil call s:LocalBrowse(expand("<amatch>"))

Executing VimEnter Autocommands for "*"
autocommand <Lua 73: vim/_defaults.lua:0>

autocommand <Lua 74: vim/_defaults.lua:0>

Executing VimEnter Autocommands for "*"
autocommand <Lua 75: vim/_defaults.lua:0>

Executing VimEnter Autocommands for "*"
autocommand sil call s:VimEnter(expand("<amatch>"))

Executing UIEnter Autocommands for "*"
autocommand <Lua 82: .../init.lua:57>

line 0: sourcing "nvim_exec2() called at UIEnter Autocommands for "*":0"
finished sourcing nvim_exec2() called at UIEnter Autocommands for "*":0
continuing in UIEnter Autocommands for "*"
line 0: sourcing "nvim_exec2() called at UIEnter Autocommands for "*":0"
finished sourcing nvim_exec2() called at UIEnter Autocommands for "*":0
continuing in UIEnter Autocommands for "*"
Executing UIEnter Autocommands for "*"
autocommand <Lua 94: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/osc52.lua:8>

Executing SafeState Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing BufFilePost Autocommands for "*"
autocommand <Lua 88: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/editorconfig.lua:4>

Executing FileType Autocommands for "*"
autocommand call s:LoadFTPlugin()

not found in runtime path: "ftplugin/cmd[.]{vim,lua} ftplugin/cmd_*.{vim,lua} ftplugin/cmd/*.{vim,lua}"
Executing FileType Autocommands for "*"
autocommand call s:LoadIndent()

not found in runtime path: "indent/cmd[.]{vim,lua}"
Executing FileType Autocommands for "*"
autocommand if !exists('b:ts_highlight') | 0verbose exe "set syntax=" . expand("<amatch>") | endif

Executing BufFilePost Autocommands for "*"
autocommand <Lua 88: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/editorconfig.lua:4>

Executing FileType Autocommands for "*"
autocommand call s:LoadFTPlugin()

not found in runtime path: "ftplugin/dialog[.]{vim,lua} ftplugin/dialog_*.{vim,lua} ftplugin/dialog/*.{vim,lua}"
Executing FileType Autocommands for "*"
autocommand call s:LoadIndent()

not found in runtime path: "indent/dialog[.]{vim,lua}"
Executing FileType Autocommands for "*"
autocommand if !exists('b:ts_highlight') | 0verbose exe "set syntax=" . expand("<amatch>") | endif

Executing BufFilePost Autocommands for "*"
autocommand <Lua 88: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/editorconfig.lua:4>

Executing FileType Autocommands for "*"
autocommand call s:LoadFTPlugin()

not found in runtime path: "ftplugin/msg[.]{vim,lua} ftplugin/msg_*.{vim,lua} ftplugin/msg/*.{vim,lua}"
Executing FileType Autocommands for "*"
autocommand call s:LoadIndent()

not found in runtime path: "indent/msg[.]{vim,lua}"
Executing FileType Autocommands for "*"
autocommand if !exists('b:ts_highlight') | 0verbose exe "set syntax=" . expand("<amatch>") | endif

Executing BufFilePost Autocommands for "*"
autocommand <Lua 88: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/editorconfig.lua:4>

Executing FileType Autocommands for "*"
autocommand call s:LoadFTPlugin()

not found in runtime path: "ftplugin/pager[.]{vim,lua} ftplugin/pager_*.{vim,lua} ftplugin/pager/*.{vim,lua}"
Executing FileType Autocommands for "*"
autocommand call s:LoadIndent()

not found in runtime path: "indent/pager[.]{vim,lua}"
Executing FileType Autocommands for "*"
autocommand if !exists('b:ts_highlight') | 0verbose exe "set syntax=" . expand("<amatch>") | endif

Executing TermResponse Autocommands for "*"
autocommand <Lua 72: vim/_defaults.lua:0>

Executing TermResponse Autocommands for "*"
autocommand <Lua 74: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/osc52.lua:39>

Executing TermResponse Autocommands for "*"
autocommand <Lua 72: vim/_defaults.lua:0>

Executing TermResponse Autocommands for "*"
autocommand <Lua 74: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/osc52.lua:39>



--- Terminal info --- {{{
&term: tmux-256color
Description: tmux with 256 colors
Aliases: tmux-256color
Boolean capabilities:
  auto_left_margin          bw         = false
  auto_right_margin         am         = true
  no_esc_ctlc               xsb        = false
  ceol_standout_glitch      xhp        = false
  eat_newline_glitch        xenl       = true
  erase_overstrike          eo         = false
  generic_type              gn         = false
  hard_copy                 hc         = false
  has_meta_key              km         = true
  has_status_line           hs         = true
  insert_null_glitch        in         = false
  memory_above              da         = false
  memory_below              db         = false
  move_insert_mode          mir        = true
  move_standout_mode        msgr       = true
  over_strike               os         = false
  status_line_esc_ok        eslok      = false
  dest_tabs_magic_smso      xt         = false
  tilde_glitch              hz         = false
  transparent_underline     ul         = false
  xon_xoff                  xon        = false
  needs_xon_xoff            nxon       = false
  prtr_silent               mc5i       = false
  hard_cursor               chts       = false
  non_rev_rmcup             nrrmc      = false
  no_pad_char               npc        = false
  non_dest_scroll_region    ndscr      = false
  can_change                ccc        = false
  back_color_erase          bce        = false
  hue_lightness_saturation  hls        = false
  col_addr_glitch           xhpa       = false
  cr_cancels_micro_mode     crxm       = false
  has_print_wheel           daisy      = false
  row_addr_glitch           xvpa       = false
  semi_auto_right_margin    sam        = false
  cpi_changes_res           cpix       = false
  lpi_changes_res           lpix       = false
  backspaces_with_bs        OTbs       = true
  crt_no_scrolling          OTns       = false
  no_correctly_working_cr   OTnc       = false
  gnu_has_meta_key          OTMT       = false
  linefeed_is_newline       OTNL       = false
  has_hardware_tabs         OTpt       = true
  return_does_clr_eol       OTxr       = false
Numeric capabilities:
  columns                   cols       = 80
  init_tabs                 it         = 8
  lines                     lines      = 24
  lines_of_memory           lm         = -1
  magic_cookie_glitch       xmc        = -1
  padding_baud_rate         pb         = -1
  virtual_terminal          vt         = -1
  width_status_line         wsl        = -1
  num_labels                nlab       = -1
  label_height              lh         = -1
  label_width               lw         = -1
  max_attributes            ma         = -1
  maximum_windows           wnum       = -1
  max_colors                colors     = 256
  max_pairs                 pairs      = 65536
  no_color_video            ncv        = -1
  buffer_capacity           bufsz      = -1
  dot_vert_spacing          spinv      = -1
  dot_horz_spacing          spinh      = -1
  max_micro_address         maddr      = -1
  max_micro_jump            mjump      = -1
  micro_col_size            mcs        = -1
  micro_line_size           mls        = -1
  number_of_pins            npins      = -1
  output_res_char           orc        = -1
  output_res_line           orl        = -1
  output_res_horz_inch      orhi       = -1
  output_res_vert_inch      orvi       = -1
  print_rate                cps        = -1
  wide_char_size            widcs      = -1
  buttons                   btns       = -1
  bit_image_entwining       bitwin     = -1
  bit_image_type            bitype     = -1
  magic_cookie_glitch_ul    OTug       = -1
  carriage_return_delay     OTdC       = -1
  new_line_delay            OTdN       = -1
  backspace_delay           OTdB       = -1
  horizontal_tab_delay      OTdT       = -1
  number_of_function_keys   OTkn       = -1
String capabilities:
  back_tab                  cbt        = ^[[Z
  bell                      bel        = ^G
  carriage_return           cr         = ^M
  change_scroll_region      csr        = ^[[%i%p1%d;%p2%dr
  clear_all_tabs            tbc        = ^[[3g
  clear_screen              clear      = ^[[H^[[J
  clr_eol                   el         = ^[[K
  clr_eos                   ed         = ^[[J
  column_address            hpa        = ^[[%i%p1%dG
  cursor_address            cup        = ^[[%i%p1%d;%p2%dH
  cursor_down               cud1       = ^@
  cursor_home               home       = ^[[H
  cursor_invisible          civis      = ^[[?25l
  cursor_left               cub1       = ^H
  cursor_normal             cnorm      = ^[[34h^[[?25h
  cursor_right              cuf1       = ^[[C
  cursor_up                 cuu1       = ^[M
  cursor_visible            cvvis      = ^[[34l
  delete_character          dch1       = ^[[P
  delete_line               dl1        = ^[[M
  dis_status_line           dsl        = ^[]0;^G
  enter_alt_charset_mode    smacs      = ^N
  enter_blink_mode          blink      = ^[[5m
  enter_bold_mode           bold       = ^[[1m
  enter_ca_mode             smcup      = ^[[?1049h
  enter_dim_mode            dim        = ^[[2m
  enter_insert_mode         smir       = ^[[4h
  enter_secure_mode         invis      = ^[[8m
  enter_reverse_mode        rev        = ^[[7m
  enter_standout_mode       smso       = ^[[7m
  enter_underline_mode      smul       = ^[[4m
  exit_alt_charset_mode     rmacs      = ^O
  exit_attribute_mode       sgr0       = ^[[m^O
  exit_ca_mode              rmcup      = ^[[?1049l
  exit_insert_mode          rmir       = ^[[4l
  exit_standout_mode        rmso       = ^[[27m
  exit_underline_mode       rmul       = ^[[24m
  flash_screen              flash      = ^[g
  from_status_line          fsl        = ^G
  init_2string              is2        = ^[)0
  insert_line               il1        = ^[[L
  key_backspace             kbs        = ^?
  key_dc                    kdch1      = ^[[3~
  key_down                  kcud1      = ^[OB
  key_f1                    kf1        = ^[OP
  key_f10                   kf10       = ^[[21~
  key_f2                    kf2        = ^[OQ
  key_f3                    kf3        = ^[OR
  key_f4                    kf4        = ^[OS
  key_f5                    kf5        = ^[[15~
  key_f6                    kf6        = ^[[17~
  key_f7                    kf7        = ^[[18~
  key_f8                    kf8        = ^[[19~
  key_f9                    kf9        = ^[[20~
  key_home                  khome      = ^[[1~
  key_ic                    kich1      = ^[[2~
  key_left                  kcub1      = ^[OD
  key_npage                 knp        = ^[[6~
  key_ppage                 kpp        = ^[[5~
  key_right                 kcuf1      = ^[OC
  key_sf                    kind       = ^[[1;2B
  key_sr                    kri        = ^[[1;2A
  key_up                    kcuu1      = ^[OA
  keypad_local              rmkx       = ^[[?1l^[>
  keypad_xmit               smkx       = ^[[?1h^[=
  newline                   nel        = ^[E
  parm_dch                  dch        = ^[[%p1%dP
  parm_delete_line          dl         = ^[[%p1%dM
  parm_down_cursor          cud        = ^[[%p1%dB
  parm_ich                  ich        = ^[[%p1%d@
  parm_index                indn       = ^[[%p1%dS
  parm_insert_line          il         = ^[[%p1%dL
  parm_left_cursor          cub        = ^[[%p1%dD
  parm_right_cursor         cuf        = ^[[%p1%dC
  parm_rindex               rin        = ^[[%p1%dT
  parm_up_cursor            cuu        = ^[[%p1%dA
  reset_2string             rs2        = ^[c^[[?1000l^[[?25h
  restore_cursor            rc         = ^[8
  row_address               vpa        = ^[[%i%p1%dd
  save_cursor               sc         = ^[7
  scroll_forward            ind        = ^@
  scroll_reverse            ri         = ^[M
  set_attributes            sgr        = ^[[0%?%p6%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p7%t;8%;m%?%p9%t^N%e^O%;
  set_tab                   hts        = ^[H
  tab                       ht         = 	
  to_status_line            tsl        = ^[]0;
  acs_chars                 acsc       = ++,,--..00``aaffgghhiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~
  key_btab                  kcbt       = ^[[Z
  ena_acs                   enacs      = ^[(B^[)0
  key_end                   kend       = ^[[4~
  key_sdc                   kDC        = ^[[3;2~
  key_send                  kEND       = ^[[1;2F
  key_shome                 kHOM       = ^[[1;2H
  key_sic                   kIC        = ^[[2;2~
  key_sleft                 kLFT       = ^[[1;2D
  key_snext                 kNXT       = ^[[6;2~
  key_sprevious             kPRV       = ^[[5;2~
  key_sright                kRIT       = ^[[1;2C
  key_f11                   kf11       = ^[[23~
  key_f12                   kf12       = ^[[24~
  key_f13                   kf13       = ^[[1;2P
  key_f14                   kf14       = ^[[1;2Q
  key_f15                   kf15       = ^[[1;2R
  key_f16                   kf16       = ^[[1;2S
  key_f17                   kf17       = ^[[15;2~
  key_f18                   kf18       = ^[[17;2~
  key_f19                   kf19       = ^[[18;2~
  key_f20                   kf20       = ^[[19;2~
  key_f21                   kf21       = ^[[20;2~
  key_f22                   kf22       = ^[[21;2~
  key_f23                   kf23       = ^[[23;2~
  key_f24                   kf24       = ^[[24;2~
  key_f25                   kf25       = ^[[1;5P
  key_f26                   kf26       = ^[[1;5Q
  key_f27                   kf27       = ^[[1;5R
  key_f28                   kf28       = ^[[1;5S
  key_f29                   kf29       = ^[[15;5~
  key_f30                   kf30       = ^[[17;5~
  key_f31                   kf31       = ^[[18;5~
  key_f32                   kf32       = ^[[19;5~
  key_f33                   kf33       = ^[[20;5~
  key_f34                   kf34       = ^[[21;5~
  key_f35                   kf35       = ^[[23;5~
  key_f36                   kf36       = ^[[24;5~
  key_f37                   kf37       = ^[[1;6P
  key_f38                   kf38       = ^[[1;6Q
  key_f39                   kf39       = ^[[1;6R
  key_f40                   kf40       = ^[[1;6S
  key_f41                   kf41       = ^[[15;6~
  key_f42                   kf42       = ^[[17;6~
  key_f43                   kf43       = ^[[18;6~
  key_f44                   kf44       = ^[[19;6~
  key_f45                   kf45       = ^[[20;6~
  key_f46                   kf46       = ^[[21;6~
  key_f47                   kf47       = ^[[23;6~
  key_f48                   kf48       = ^[[24;6~
  key_f49                   kf49       = ^[[1;3P
  key_f50                   kf50       = ^[[1;3Q
  key_f51                   kf51       = ^[[1;3R
  key_f52                   kf52       = ^[[1;3S
  key_f53                   kf53       = ^[[15;3~
  key_f54                   kf54       = ^[[17;3~
  key_f55                   kf55       = ^[[18;3~
  key_f56                   kf56       = ^[[19;3~
  key_f57                   kf57       = ^[[20;3~
  key_f58                   kf58       = ^[[21;3~
  key_f59                   kf59       = ^[[23;3~
  key_f60                   kf60       = ^[[24;3~
  key_f61                   kf61       = ^[[1;4P
  key_f62                   kf62       = ^[[1;4Q
  key_f63                   kf63       = ^[[1;4R
  clr_bol                   el1        = ^[[1K
  user6                     u6         = ^[[%i%d;%dR
  user7                     u7         = ^[[6n
  user8                     u8         = ^[[?1;2c
  user9                     u9         = ^[[c
  orig_pair                 op         = ^[[39;49m
  enter_italics_mode        sitm       = ^[[3m
  exit_italics_mode         ritm       = ^[[23m
  key_mouse                 kmous      = ^[[M
  set_a_foreground          setaf      = ^[[%?%p1%{8}%<%t3%p1%d%e%p1%{16}%<%t9%p1%{8}%-%d%e38;5;%p1%d%;m
  set_a_background          setab      = ^[[%?%p1%{8}%<%t4%p1%d%e%p1%{16}%<%t10%p1%{8}%-%d%e48;5;%p1%d%;m
Extended boolean capabilities:
  AX                        = true
  G0                        = true
  XF                        = true
Extended numeric capabilities:
  U8                        = 1
Extended string capabilities:
  BD                        = ^[[?2004l
  BE                        = ^[[?2004h
  Cr                        = ^[]112^G
  Cs                        = ^[]12;%p1%s^G
  E0                        = ^[(B
  E3                        = ^[[3J
  Ms                        = ^[]52;%p1%s;%p2%s^G
  PE                        = ^[[201~
  PS                        = ^[[200~
  RV                        = ^[[>c
  S0                        = ^[(%p1%c
  Se                        = ^[[2 q
  Smulx                     = ^[[4:%p1%dm
  Ss                        = ^[[%p1%d q
  TS                        = ^[]0;
  XR                        = ^[[>0q
  fd                        = ^[[?1004l
  fe                        = ^[[?1004h
  kDC3                      = ^[[3;3~
  kDC4                      = ^[[3;4~
  kDC5                      = ^[[3;5~
  kDC6                      = ^[[3;6~
  kDC7                      = ^[[3;7~
  kDN                       = ^[[1;2B
  kDN3                      = ^[[1;3B
  kDN4                      = ^[[1;4B
  kDN5                      = ^[[1;5B
  kDN6                      = ^[[1;6B
  kDN7                      = ^[[1;7B
  kEND3                     = ^[[1;3F
  kEND4                     = ^[[1;4F
  kEND5                     = ^[[1;5F
  kEND6                     = ^[[1;6F
  kEND7                     = ^[[1;7F
  kHOM3                     = ^[[1;3H
  kHOM4                     = ^[[1;4H
  kHOM5                     = ^[[1;5H
  kHOM6                     = ^[[1;6H
  kHOM7                     = ^[[1;7H
  kIC3                      = ^[[2;3~
  kIC4                      = ^[[2;4~
  kIC5                      = ^[[2;5~
  kIC6                      = ^[[2;6~
  kIC7                      = ^[[2;7~
  kLFT3                     = ^[[1;3D
  kLFT4                     = ^[[1;4D
  kLFT5                     = ^[[1;5D
  kLFT6                     = ^[[1;6D
  kLFT7                     = ^[[1;7D
  kNXT3                     = ^[[6;3~
  kNXT4                     = ^[[6;4~
  kNXT5                     = ^[[6;5~
  kNXT6                     = ^[[6;6~
  kNXT7                     = ^[[6;7~
  kPRV3                     = ^[[5;3~
  kPRV4                     = ^[[5;4~
  kPRV5                     = ^[[5;5~
  kPRV6                     = ^[[5;6~
  kPRV7                     = ^[[5;7~
  kRIT3                     = ^[[1;3C
  kRIT4                     = ^[[1;4C
  kRIT5                     = ^[[1;5C
  kRIT6                     = ^[[1;6C
  kRIT7                     = ^[[1;7C
  kUP                       = ^[[1;2A
  kUP3                      = ^[[1;3A
  kUP4                      = ^[[1;4A
  kUP5                      = ^[[1;5A
  kUP6                      = ^[[1;6A
  kUP7                      = ^[[1;7A
  kxIN                      = ^[[I
  kxOUT                     = ^[[O
  rmxx                      = ^[[29m
  rv                        = ^[\[[0-9]+;[0-9]+;[0-9]+c
  smxx                      = ^[[9m
  xr                        = ^[P>\|[ -~]+^[\\
  ext.enter_altfont_mode    = ^[[11m
  setrgbf                   = ^[[38;2;%p1%d;%p2%d;%p3%dm
  setrgbb                   = ^[[48;2;%p1%d;%p2%d;%p3%dm
  ext.save_title            = ^[[22;0t
  ext.restore_title         = ^[[23;0t
  ext.set_title             = ^[]0;%p2%s^G
  ext.enable_focus          = ^[[?1004h
  ext.disable_focus         = ^[[?1004l
  ext.set_underline_color   = ^[[58:2::%p1%d:%p2%d:%p3%dm
}}}


Executing command: "'/usr/bin/git' '-C' '/tmp' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing BufFilePost Autocommands for "*"
autocommand <Lua 88: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/editorconfig.lua:4>

Executing FileType Autocommands for "*"
autocommand call s:LoadFTPlugin()

not found in runtime path: "ftplugin/NvimTree[.]{vim,lua} ftplugin/NvimTree_*.{vim,lua} ftplugin/NvimTree/*.{vim,lua}"
Executing FileType Autocommands for "*"
autocommand call s:LoadIndent()

not found in runtime path: "indent/NvimTree[.]{vim,lua}"
Executing FileType Autocommands for "*"
autocommand if !exists('b:ts_highlight') | 0verbose exe "set syntax=" . expand("<amatch>") | endif

Executing WinLeave Autocommands for "*"
autocommand call s:Remove_Matches()

Executing WinEnter Autocommands for "*"
autocommand <Lua 81: ..../tmp/nvim/builds/from-src/share/nvim/runtime/lua/vim/_extui.lua:134>

Executing WinEnter Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing BufLeave Autocommands for "*"
autocommand call s:Remove_Matches()

Executing BufEnter Autocommands for "*"
autocommand <Lua 89: .../nvim/pack/plugins/opt/nvim-tree/lua/nvim-tree.lua:98>

Executing BufEnter Autocommands for "NvimTree_*"
autocommand <Lua 138: .../nvim/pack/plugins/opt/nvim-tree/lua/nvim-tree/explorer/init.lua:171>

Executing command: "'/usr/bin/git' '-C' '/tmp/.font-unix' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/.ICE-unix' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/.org.chromium.Chromium.J43mhS' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/.X11-unix' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/.XIM-unix' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/cutv-prepare' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/newdir' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/phpstan' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/scoped_dirmjvcVY' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/system-commandline-sentinel-files' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-bluetooth.service-2QWpEJ' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-colord.service-5rHXvj' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-exim4.service-G3a6FU' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-fwupd.service-ssmXsT' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-haveged.service-Ckb7TJ' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-incron.service-nKKjkV' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-lm-sensors.service-Ij7FkH' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-low-memory-monitor.service-fFQsjX' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-pcscd.service-qmkru9' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-polkit.service-fd43WD' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-power-profiles-daemon.service-T8CRHy' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-switcheroo-control.service-7xAKT1' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-systemd-logind.service-LmlgXf' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-upower.service-fSxFAg' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/tmux-1000' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing BufWinEnter Autocommands for "*"
autocommand autocmd SafeState * ++once call s:Highlight_Matching_Pair()

Executing BufWinEnter Autocommands for "<buffer=6>"
autocommand <Lua 224: .../nvim/pack/plugins/opt/nvim-tree/lua/nvim-tree/explorer/view.lua:123>

sourcing "nvim_exec2()"
finished sourcing nvim_exec2()
Executing CursorMoved Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing TextChanged Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing WinScrolled Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing SafeState Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing CursorMoved Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing TextChanged Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing CursorMoved Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing TextChanged Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing CursorMoved Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing TextChanged Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing CursorMoved Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing TextChanged Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing CursorMoved Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing TextChanged Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()


Executing BufUnload Autocommands for "*"
autocommand <Lua 137: .../nvim/pack/plugins/opt/nvim-tree/lua/nvim-tree/explorer/init.lua:148>

Executing BufUnload Autocommands for "*"
autocommand <Lua 137: .../nvim/pack/plugins/opt/nvim-tree/lua/nvim-tree/explorer/init.lua:148>

Writing ShaDa file ".../.xdg/state/nvim/shada/main.shada"
Executing UILeave Autocommands for "*"
autocommand <Lua 95: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/osc52.lua:99>

sourcing "nvim_exec2()"
finished sourcing nvim_exec2()
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/ftplugin.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/ftplugin.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/indent.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/indent.vim
sourcing "init.lua"
finished sourcing init.lua
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/filetype.lua"
line 0: sourcing "nvim_exec2() called at ..../tmp/nvim/builds/from-src/share/nvim/runtime/filetype.lua:0"
not found in runtime path: "ftdetect/*.{vim,lua}"
finished sourcing nvim_exec2() called at ..../tmp/nvim/builds/from-src/share/nvim/runtime/filetype.lua:0
continuing in ..../tmp/nvim/builds/from-src/share/nvim/runtime/filetype.lua
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/filetype.lua
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/syntax/syntax.vim"
line 20: sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/syntax/synload.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/syntax/synload.vim
continuing in ..../tmp/nvim/builds/from-src/share/nvim/runtime/syntax/syntax.vim
Executing FileType Autocommands for "*"
autocommand if !exists('b:ts_highlight') | 0verbose exe "set syntax=" . expand("<amatch>") | endif

finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/syntax/syntax.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/gzip.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/gzip.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/matchit.vim"
not found in 'packpath': "pack/*/start/matchit"
line 3: sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/pack/dist/opt/matchit/plugin/matchit.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/pack/dist/opt/matchit/plugin/matchit.vim
continuing in ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/matchit.vim
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/matchit.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/matchparen.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/matchparen.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/netrwPlugin.vim"
not found in 'packpath': "pack/*/start/netrw"
line 7: sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/pack/dist/opt/netrw/plugin/netrwPlugin.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/pack/dist/opt/netrw/plugin/netrwPlugin.vim
continuing in ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/netrwPlugin.vim
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/netrwPlugin.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/rplugin.vim"
  1: .../vim/_defaults.lua
  2: ..../tmp/nvim/builds/from-src/share/nvim/runtime/ftplugin.vim
  3: ..../tmp/nvim/builds/from-src/share/nvim/runtime/indent.vim
  4: .../init.lua
  5: ..../tmp/nvim/builds/from-src/share/nvim/runtime/lua/vim/_extui.lua
  6: ..../tmp/nvim/builds/from-src/share/nvim/runtime/filetype.lua
  7: ..../tmp/nvim/builds/from-src/share/nvim/runtime/syntax/syntax.vim
  8: ..../tmp/nvim/builds/from-src/share/nvim/runtime/syntax/synload.vim
  9: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/gzip.vim
 10: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/matchit.vim
 11: ..../tmp/nvim/builds/from-src/share/nvim/runtime/pack/dist/opt/matchit/plugin/matchit.vim
 12: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/matchparen.vim
 13: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/netrwPlugin.vim
 14: ..../tmp/nvim/builds/from-src/share/nvim/runtime/pack/dist/opt/netrw/plugin/netrwPlugin.vim
 15: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/rplugin.vim
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/rplugin.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/spellfile.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/spellfile.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/tarPlugin.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/tarPlugin.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/tutor.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/tutor.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/zipPlugin.vim"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/zipPlugin.vim
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/editorconfig.lua"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/editorconfig.lua
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/man.lua"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/man.lua
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/nvim/net.lua"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/nvim/net.lua
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/osc52.lua"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/osc52.lua
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/shada.lua"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/shada.lua
sourcing "..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/tohtml.lua"
finished sourcing ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/tohtml.lua
not found in 'packpath': "start/*"
not found in runtime path: "plugin/**/*"
Reading ShaDa file ".../.xdg/state/nvim/shada/main.shada" info marks oldfiles
Executing BufWinEnter Autocommands for "*"
autocommand autocmd SafeState * ++once call s:Highlight_Matching_Pair()

Executing BufEnter Autocommands for "*"
autocommand sil call s:LocalBrowse(expand("<amatch>"))

Executing VimEnter Autocommands for "*"
autocommand <Lua 73: vim/_defaults.lua:0>

autocommand <Lua 74: vim/_defaults.lua:0>

Executing VimEnter Autocommands for "*"
autocommand <Lua 75: vim/_defaults.lua:0>

Executing VimEnter Autocommands for "*"
autocommand sil call s:VimEnter(expand("<amatch>"))

Executing UIEnter Autocommands for "*"
autocommand <Lua 82: .../init.lua:57>

line 0: sourcing "nvim_exec2() called at UIEnter Autocommands for "*":0"
finished sourcing nvim_exec2() called at UIEnter Autocommands for "*":0
continuing in UIEnter Autocommands for "*"
line 0: sourcing "nvim_exec2() called at UIEnter Autocommands for "*":0"
finished sourcing nvim_exec2() called at UIEnter Autocommands for "*":0
continuing in UIEnter Autocommands for "*"
Executing UIEnter Autocommands for "*"
autocommand <Lua 94: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/osc52.lua:8>

Executing SafeState Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing BufFilePost Autocommands for "*"
autocommand <Lua 88: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/editorconfig.lua:4>

Executing FileType Autocommands for "*"
autocommand call s:LoadFTPlugin()

not found in runtime path: "ftplugin/cmd[.]{vim,lua} ftplugin/cmd_*.{vim,lua} ftplugin/cmd/*.{vim,lua}"
Executing FileType Autocommands for "*"
autocommand call s:LoadIndent()

not found in runtime path: "indent/cmd[.]{vim,lua}"
Executing FileType Autocommands for "*"
autocommand if !exists('b:ts_highlight') | 0verbose exe "set syntax=" . expand("<amatch>") | endif

Executing BufFilePost Autocommands for "*"
autocommand <Lua 88: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/editorconfig.lua:4>

Executing FileType Autocommands for "*"
autocommand call s:LoadFTPlugin()

not found in runtime path: "ftplugin/dialog[.]{vim,lua} ftplugin/dialog_*.{vim,lua} ftplugin/dialog/*.{vim,lua}"
Executing FileType Autocommands for "*"
autocommand call s:LoadIndent()

not found in runtime path: "indent/dialog[.]{vim,lua}"
Executing FileType Autocommands for "*"
autocommand if !exists('b:ts_highlight') | 0verbose exe "set syntax=" . expand("<amatch>") | endif

Executing BufFilePost Autocommands for "*"
autocommand <Lua 88: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/editorconfig.lua:4>

Executing FileType Autocommands for "*"
autocommand call s:LoadFTPlugin()

not found in runtime path: "ftplugin/msg[.]{vim,lua} ftplugin/msg_*.{vim,lua} ftplugin/msg/*.{vim,lua}"
Executing FileType Autocommands for "*"
autocommand call s:LoadIndent()

not found in runtime path: "indent/msg[.]{vim,lua}"
Executing FileType Autocommands for "*"
autocommand if !exists('b:ts_highlight') | 0verbose exe "set syntax=" . expand("<amatch>") | endif

Executing BufFilePost Autocommands for "*"
autocommand <Lua 88: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/editorconfig.lua:4>

Executing FileType Autocommands for "*"
autocommand call s:LoadFTPlugin()

not found in runtime path: "ftplugin/pager[.]{vim,lua} ftplugin/pager_*.{vim,lua} ftplugin/pager/*.{vim,lua}"
Executing FileType Autocommands for "*"
autocommand call s:LoadIndent()

not found in runtime path: "indent/pager[.]{vim,lua}"
Executing FileType Autocommands for "*"
autocommand if !exists('b:ts_highlight') | 0verbose exe "set syntax=" . expand("<amatch>") | endif

Executing TermResponse Autocommands for "*"
autocommand <Lua 72: vim/_defaults.lua:0>

Executing TermResponse Autocommands for "*"
autocommand <Lua 74: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/osc52.lua:39>

Executing TermResponse Autocommands for "*"
autocommand <Lua 72: vim/_defaults.lua:0>

Executing TermResponse Autocommands for "*"
autocommand <Lua 74: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/osc52.lua:39>



--- Terminal info --- {{{
&term: tmux-256color
Description: tmux with 256 colors
Aliases: tmux-256color
Boolean capabilities:
  auto_left_margin          bw         = false
  auto_right_margin         am         = true
  no_esc_ctlc               xsb        = false
  ceol_standout_glitch      xhp        = false
  eat_newline_glitch        xenl       = true
  erase_overstrike          eo         = false
  generic_type              gn         = false
  hard_copy                 hc         = false
  has_meta_key              km         = true
  has_status_line           hs         = true
  insert_null_glitch        in         = false
  memory_above              da         = false
  memory_below              db         = false
  move_insert_mode          mir        = true
  move_standout_mode        msgr       = true
  over_strike               os         = false
  status_line_esc_ok        eslok      = false
  dest_tabs_magic_smso      xt         = false
  tilde_glitch              hz         = false
  transparent_underline     ul         = false
  xon_xoff                  xon        = false
  needs_xon_xoff            nxon       = false
  prtr_silent               mc5i       = false
  hard_cursor               chts       = false
  non_rev_rmcup             nrrmc      = false
  no_pad_char               npc        = false
  non_dest_scroll_region    ndscr      = false
  can_change                ccc        = false
  back_color_erase          bce        = false
  hue_lightness_saturation  hls        = false
  col_addr_glitch           xhpa       = false
  cr_cancels_micro_mode     crxm       = false
  has_print_wheel           daisy      = false
  row_addr_glitch           xvpa       = false
  semi_auto_right_margin    sam        = false
  cpi_changes_res           cpix       = false
  lpi_changes_res           lpix       = false
  backspaces_with_bs        OTbs       = true
  crt_no_scrolling          OTns       = false
  no_correctly_working_cr   OTnc       = false
  gnu_has_meta_key          OTMT       = false
  linefeed_is_newline       OTNL       = false
  has_hardware_tabs         OTpt       = true
  return_does_clr_eol       OTxr       = false
Numeric capabilities:
  columns                   cols       = 80
  init_tabs                 it         = 8
  lines                     lines      = 24
  lines_of_memory           lm         = -1
  magic_cookie_glitch       xmc        = -1
  padding_baud_rate         pb         = -1
  virtual_terminal          vt         = -1
  width_status_line         wsl        = -1
  num_labels                nlab       = -1
  label_height              lh         = -1
  label_width               lw         = -1
  max_attributes            ma         = -1
  maximum_windows           wnum       = -1
  max_colors                colors     = 256
  max_pairs                 pairs      = 65536
  no_color_video            ncv        = -1
  buffer_capacity           bufsz      = -1
  dot_vert_spacing          spinv      = -1
  dot_horz_spacing          spinh      = -1
  max_micro_address         maddr      = -1
  max_micro_jump            mjump      = -1
  micro_col_size            mcs        = -1
  micro_line_size           mls        = -1
  number_of_pins            npins      = -1
  output_res_char           orc        = -1
  output_res_line           orl        = -1
  output_res_horz_inch      orhi       = -1
  output_res_vert_inch      orvi       = -1
  print_rate                cps        = -1
  wide_char_size            widcs      = -1
  buttons                   btns       = -1
  bit_image_entwining       bitwin     = -1
  bit_image_type            bitype     = -1
  magic_cookie_glitch_ul    OTug       = -1
  carriage_return_delay     OTdC       = -1
  new_line_delay            OTdN       = -1
  backspace_delay           OTdB       = -1
  horizontal_tab_delay      OTdT       = -1
  number_of_function_keys   OTkn       = -1
String capabilities:
  back_tab                  cbt        = ^[[Z
  bell                      bel        = ^G
  carriage_return           cr         = ^M
  change_scroll_region      csr        = ^[[%i%p1%d;%p2%dr
  clear_all_tabs            tbc        = ^[[3g
  clear_screen              clear      = ^[[H^[[J
  clr_eol                   el         = ^[[K
  clr_eos                   ed         = ^[[J
  column_address            hpa        = ^[[%i%p1%dG
  cursor_address            cup        = ^[[%i%p1%d;%p2%dH
  cursor_down               cud1       = ^@
  cursor_home               home       = ^[[H
  cursor_invisible          civis      = ^[[?25l
  cursor_left               cub1       = ^H
  cursor_normal             cnorm      = ^[[34h^[[?25h
  cursor_right              cuf1       = ^[[C
  cursor_up                 cuu1       = ^[M
  cursor_visible            cvvis      = ^[[34l
  delete_character          dch1       = ^[[P
  delete_line               dl1        = ^[[M
  dis_status_line           dsl        = ^[]0;^G
  enter_alt_charset_mode    smacs      = ^N
  enter_blink_mode          blink      = ^[[5m
  enter_bold_mode           bold       = ^[[1m
  enter_ca_mode             smcup      = ^[[?1049h
  enter_dim_mode            dim        = ^[[2m
  enter_insert_mode         smir       = ^[[4h
  enter_secure_mode         invis      = ^[[8m
  enter_reverse_mode        rev        = ^[[7m
  enter_standout_mode       smso       = ^[[7m
  enter_underline_mode      smul       = ^[[4m
  exit_alt_charset_mode     rmacs      = ^O
  exit_attribute_mode       sgr0       = ^[[m^O
  exit_ca_mode              rmcup      = ^[[?1049l
  exit_insert_mode          rmir       = ^[[4l
  exit_standout_mode        rmso       = ^[[27m
  exit_underline_mode       rmul       = ^[[24m
  flash_screen              flash      = ^[g
  from_status_line          fsl        = ^G
  init_2string              is2        = ^[)0
  insert_line               il1        = ^[[L
  key_backspace             kbs        = ^?
  key_dc                    kdch1      = ^[[3~
  key_down                  kcud1      = ^[OB
  key_f1                    kf1        = ^[OP
  key_f10                   kf10       = ^[[21~
  key_f2                    kf2        = ^[OQ
  key_f3                    kf3        = ^[OR
  key_f4                    kf4        = ^[OS
  key_f5                    kf5        = ^[[15~
  key_f6                    kf6        = ^[[17~
  key_f7                    kf7        = ^[[18~
  key_f8                    kf8        = ^[[19~
  key_f9                    kf9        = ^[[20~
  key_home                  khome      = ^[[1~
  key_ic                    kich1      = ^[[2~
  key_left                  kcub1      = ^[OD
  key_npage                 knp        = ^[[6~
  key_ppage                 kpp        = ^[[5~
  key_right                 kcuf1      = ^[OC
  key_sf                    kind       = ^[[1;2B
  key_sr                    kri        = ^[[1;2A
  key_up                    kcuu1      = ^[OA
  keypad_local              rmkx       = ^[[?1l^[>
  keypad_xmit               smkx       = ^[[?1h^[=
  newline                   nel        = ^[E
  parm_dch                  dch        = ^[[%p1%dP
  parm_delete_line          dl         = ^[[%p1%dM
  parm_down_cursor          cud        = ^[[%p1%dB
  parm_ich                  ich        = ^[[%p1%d@
  parm_index                indn       = ^[[%p1%dS
  parm_insert_line          il         = ^[[%p1%dL
  parm_left_cursor          cub        = ^[[%p1%dD
  parm_right_cursor         cuf        = ^[[%p1%dC
  parm_rindex               rin        = ^[[%p1%dT
  parm_up_cursor            cuu        = ^[[%p1%dA
  reset_2string             rs2        = ^[c^[[?1000l^[[?25h
  restore_cursor            rc         = ^[8
  row_address               vpa        = ^[[%i%p1%dd
  save_cursor               sc         = ^[7
  scroll_forward            ind        = ^@
  scroll_reverse            ri         = ^[M
  set_attributes            sgr        = ^[[0%?%p6%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p7%t;8%;m%?%p9%t^N%e^O%;
  set_tab                   hts        = ^[H
  tab                       ht         = 	
  to_status_line            tsl        = ^[]0;
  acs_chars                 acsc       = ++,,--..00``aaffgghhiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~
  key_btab                  kcbt       = ^[[Z
  ena_acs                   enacs      = ^[(B^[)0
  key_end                   kend       = ^[[4~
  key_sdc                   kDC        = ^[[3;2~
  key_send                  kEND       = ^[[1;2F
  key_shome                 kHOM       = ^[[1;2H
  key_sic                   kIC        = ^[[2;2~
  key_sleft                 kLFT       = ^[[1;2D
  key_snext                 kNXT       = ^[[6;2~
  key_sprevious             kPRV       = ^[[5;2~
  key_sright                kRIT       = ^[[1;2C
  key_f11                   kf11       = ^[[23~
  key_f12                   kf12       = ^[[24~
  key_f13                   kf13       = ^[[1;2P
  key_f14                   kf14       = ^[[1;2Q
  key_f15                   kf15       = ^[[1;2R
  key_f16                   kf16       = ^[[1;2S
  key_f17                   kf17       = ^[[15;2~
  key_f18                   kf18       = ^[[17;2~
  key_f19                   kf19       = ^[[18;2~
  key_f20                   kf20       = ^[[19;2~
  key_f21                   kf21       = ^[[20;2~
  key_f22                   kf22       = ^[[21;2~
  key_f23                   kf23       = ^[[23;2~
  key_f24                   kf24       = ^[[24;2~
  key_f25                   kf25       = ^[[1;5P
  key_f26                   kf26       = ^[[1;5Q
  key_f27                   kf27       = ^[[1;5R
  key_f28                   kf28       = ^[[1;5S
  key_f29                   kf29       = ^[[15;5~
  key_f30                   kf30       = ^[[17;5~
  key_f31                   kf31       = ^[[18;5~
  key_f32                   kf32       = ^[[19;5~
  key_f33                   kf33       = ^[[20;5~
  key_f34                   kf34       = ^[[21;5~
  key_f35                   kf35       = ^[[23;5~
  key_f36                   kf36       = ^[[24;5~
  key_f37                   kf37       = ^[[1;6P
  key_f38                   kf38       = ^[[1;6Q
  key_f39                   kf39       = ^[[1;6R
  key_f40                   kf40       = ^[[1;6S
  key_f41                   kf41       = ^[[15;6~
  key_f42                   kf42       = ^[[17;6~
  key_f43                   kf43       = ^[[18;6~
  key_f44                   kf44       = ^[[19;6~
  key_f45                   kf45       = ^[[20;6~
  key_f46                   kf46       = ^[[21;6~
  key_f47                   kf47       = ^[[23;6~
  key_f48                   kf48       = ^[[24;6~
  key_f49                   kf49       = ^[[1;3P
  key_f50                   kf50       = ^[[1;3Q
  key_f51                   kf51       = ^[[1;3R
  key_f52                   kf52       = ^[[1;3S
  key_f53                   kf53       = ^[[15;3~
  key_f54                   kf54       = ^[[17;3~
  key_f55                   kf55       = ^[[18;3~
  key_f56                   kf56       = ^[[19;3~
  key_f57                   kf57       = ^[[20;3~
  key_f58                   kf58       = ^[[21;3~
  key_f59                   kf59       = ^[[23;3~
  key_f60                   kf60       = ^[[24;3~
  key_f61                   kf61       = ^[[1;4P
  key_f62                   kf62       = ^[[1;4Q
  key_f63                   kf63       = ^[[1;4R
  clr_bol                   el1        = ^[[1K
  user6                     u6         = ^[[%i%d;%dR
  user7                     u7         = ^[[6n
  user8                     u8         = ^[[?1;2c
  user9                     u9         = ^[[c
  orig_pair                 op         = ^[[39;49m
  enter_italics_mode        sitm       = ^[[3m
  exit_italics_mode         ritm       = ^[[23m
  key_mouse                 kmous      = ^[[M
  set_a_foreground          setaf      = ^[[%?%p1%{8}%<%t3%p1%d%e%p1%{16}%<%t9%p1%{8}%-%d%e38;5;%p1%d%;m
  set_a_background          setab      = ^[[%?%p1%{8}%<%t4%p1%d%e%p1%{16}%<%t10%p1%{8}%-%d%e48;5;%p1%d%;m
Extended boolean capabilities:
  AX                        = true
  G0                        = true
  XF                        = true
Extended numeric capabilities:
  U8                        = 1
Extended string capabilities:
  BD                        = ^[[?2004l
  BE                        = ^[[?2004h
  Cr                        = ^[]112^G
  Cs                        = ^[]12;%p1%s^G
  E0                        = ^[(B
  E3                        = ^[[3J
  Ms                        = ^[]52;%p1%s;%p2%s^G
  PE                        = ^[[201~
  PS                        = ^[[200~
  RV                        = ^[[>c
  S0                        = ^[(%p1%c
  Se                        = ^[[2 q
  Smulx                     = ^[[4:%p1%dm
  Ss                        = ^[[%p1%d q
  TS                        = ^[]0;
  XR                        = ^[[>0q
  fd                        = ^[[?1004l
  fe                        = ^[[?1004h
  kDC3                      = ^[[3;3~
  kDC4                      = ^[[3;4~
  kDC5                      = ^[[3;5~
  kDC6                      = ^[[3;6~
  kDC7                      = ^[[3;7~
  kDN                       = ^[[1;2B
  kDN3                      = ^[[1;3B
  kDN4                      = ^[[1;4B
  kDN5                      = ^[[1;5B
  kDN6                      = ^[[1;6B
  kDN7                      = ^[[1;7B
  kEND3                     = ^[[1;3F
  kEND4                     = ^[[1;4F
  kEND5                     = ^[[1;5F
  kEND6                     = ^[[1;6F
  kEND7                     = ^[[1;7F
  kHOM3                     = ^[[1;3H
  kHOM4                     = ^[[1;4H
  kHOM5                     = ^[[1;5H
  kHOM6                     = ^[[1;6H
  kHOM7                     = ^[[1;7H
  kIC3                      = ^[[2;3~
  kIC4                      = ^[[2;4~
  kIC5                      = ^[[2;5~
  kIC6                      = ^[[2;6~
  kIC7                      = ^[[2;7~
  kLFT3                     = ^[[1;3D
  kLFT4                     = ^[[1;4D
  kLFT5                     = ^[[1;5D
  kLFT6                     = ^[[1;6D
  kLFT7                     = ^[[1;7D
  kNXT3                     = ^[[6;3~
  kNXT4                     = ^[[6;4~
  kNXT5                     = ^[[6;5~
  kNXT6                     = ^[[6;6~
  kNXT7                     = ^[[6;7~
  kPRV3                     = ^[[5;3~
  kPRV4                     = ^[[5;4~
  kPRV5                     = ^[[5;5~
  kPRV6                     = ^[[5;6~
  kPRV7                     = ^[[5;7~
  kRIT3                     = ^[[1;3C
  kRIT4                     = ^[[1;4C
  kRIT5                     = ^[[1;5C
  kRIT6                     = ^[[1;6C
  kRIT7                     = ^[[1;7C
  kUP                       = ^[[1;2A
  kUP3                      = ^[[1;3A
  kUP4                      = ^[[1;4A
  kUP5                      = ^[[1;5A
  kUP6                      = ^[[1;6A
  kUP7                      = ^[[1;7A
  kxIN                      = ^[[I
  kxOUT                     = ^[[O
  rmxx                      = ^[[29m
  rv                        = ^[\[[0-9]+;[0-9]+;[0-9]+c
  smxx                      = ^[[9m
  xr                        = ^[P>\|[ -~]+^[\\
  ext.enter_altfont_mode    = ^[[11m
  setrgbf                   = ^[[38;2;%p1%d;%p2%d;%p3%dm
  setrgbb                   = ^[[48;2;%p1%d;%p2%d;%p3%dm
  ext.save_title            = ^[[22;0t
  ext.restore_title         = ^[[23;0t
  ext.set_title             = ^[]0;%p2%s^G
  ext.enable_focus          = ^[[?1004h
  ext.disable_focus         = ^[[?1004l
  ext.set_underline_color   = ^[[58:2::%p1%d:%p2%d:%p3%dm
}}}


Executing command: "'/usr/bin/git' '-C' '/tmp' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing BufFilePost Autocommands for "*"
autocommand <Lua 88: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/editorconfig.lua:4>

Executing FileType Autocommands for "*"
autocommand call s:LoadFTPlugin()

not found in runtime path: "ftplugin/NvimTree[.]{vim,lua} ftplugin/NvimTree_*.{vim,lua} ftplugin/NvimTree/*.{vim,lua}"
Executing FileType Autocommands for "*"
autocommand call s:LoadIndent()

not found in runtime path: "indent/NvimTree[.]{vim,lua}"
Executing FileType Autocommands for "*"
autocommand if !exists('b:ts_highlight') | 0verbose exe "set syntax=" . expand("<amatch>") | endif

Executing WinLeave Autocommands for "*"
autocommand call s:Remove_Matches()

Executing WinEnter Autocommands for "*"
autocommand <Lua 81: ..../tmp/nvim/builds/from-src/share/nvim/runtime/lua/vim/_extui.lua:134>

Executing WinEnter Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing BufLeave Autocommands for "*"
autocommand call s:Remove_Matches()

Executing BufEnter Autocommands for "*"
autocommand <Lua 89: .../nvim/pack/plugins/opt/nvim-tree/lua/nvim-tree.lua:98>

Executing BufEnter Autocommands for "NvimTree_*"
autocommand <Lua 138: .../nvim/pack/plugins/opt/nvim-tree/lua/nvim-tree/explorer/init.lua:171>

Executing command: "'/usr/bin/git' '-C' '/tmp/.font-unix' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/.ICE-unix' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/.org.chromium.Chromium.J43mhS' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/.X11-unix' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/.XIM-unix' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/cutv-prepare' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/newdir' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/phpstan' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/scoped_dirmjvcVY' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/system-commandline-sentinel-files' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-bluetooth.service-2QWpEJ' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-colord.service-5rHXvj' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-exim4.service-G3a6FU' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-fwupd.service-ssmXsT' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-haveged.service-Ckb7TJ' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-incron.service-nKKjkV' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-lm-sensors.service-Ij7FkH' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-low-memory-monitor.service-fFQsjX' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-pcscd.service-qmkru9' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-polkit.service-fd43WD' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-power-profiles-daemon.service-T8CRHy' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-switcheroo-control.service-7xAKT1' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-systemd-logind.service-LmlgXf' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-tor@default.service-jsL1IM' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-upower.service-fSxFAg' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing command: "'/usr/bin/git' '-C' '/tmp/tmux-1000' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing BufWinEnter Autocommands for "*"
autocommand autocmd SafeState * ++once call s:Highlight_Matching_Pair()

Executing BufWinEnter Autocommands for "<buffer=6>"
autocommand <Lua 224: .../nvim/pack/plugins/opt/nvim-tree/lua/nvim-tree/explorer/view.lua:123>

sourcing "nvim_exec2()"
finished sourcing nvim_exec2()
Executing CursorMoved Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing TextChanged Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing WinScrolled Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing SafeState Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing CursorMoved Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing TextChanged Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing CursorMoved Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing TextChanged Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing CursorMoved Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing TextChanged Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing CursorMoved Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing TextChanged Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing command: "'/usr/bin/git' '-C' '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp' 'rev-parse' '--show-toplevel' '--absolute-git-dir'"


Executing CursorMoved Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()

Executing TextChanged Autocommands for "*"
autocommand call s:Highlight_Matching_Pair()


Executing BufUnload Autocommands for "*"
autocommand <Lua 137: .../nvim/pack/plugins/opt/nvim-tree/lua/nvim-tree/explorer/init.lua:148>

Executing BufUnload Autocommands for "*"
autocommand <Lua 137: .../nvim/pack/plugins/opt/nvim-tree/lua/nvim-tree/explorer/init.lua:148>

Writing ShaDa file ".../.xdg/state/nvim/shada/main.shada"
Executing UILeave Autocommands for "*"
autocommand <Lua 95: ..../tmp/nvim/builds/from-src/share/nvim/runtime/plugin/osc52.lua:99>

nvim-tree.log
[2025-08-04 14:45:23] [profile] START core init /tmp
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp'
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp
[2025-08-04 14:45:23] [git] git -C /tmp rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp 8ms
[2025-08-04 14:45:23] [profile] START explore /tmp
[2025-08-04 14:45:23] [profile] START populate_children /tmp/.ICE-unix
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/.ICE-unix' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/.ICE-unix'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/.ICE-unix'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/.ICE-unix 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/.X0-lock
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/.X0-lock 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/.X1-lock
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/.X1-lock 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/.X11-unix
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/.X11-unix' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/.X11-unix'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/.X11-unix'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/.X11-unix 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/.XIM-unix
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/.XIM-unix' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/.XIM-unix'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/.XIM-unix'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/.XIM-unix 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/.font-unix
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/.font-unix' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/.font-unix'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/.font-unix'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/.font-unix 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/.org.chromium.Chromium.J43mhS
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/.org.chromium.Chromium.J43mhS' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/.org.chromium.Chromium.J43mhS'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/.org.chromium.Chromium.J43mhS'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/.org.chromium.Chromium.J43mhS 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/MozillaUpdateLock-AD84E156BA68E8C7
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/MozillaUpdateLock-AD84E156BA68E8C7 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/MozillaUpdateLock-FDC06A44555C23FD
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/MozillaUpdateLock-FDC06A44555C23FD 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/clr-debug-pipe-300553-60790554-in
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/clr-debug-pipe-300553-60790554-in 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/clr-debug-pipe-300553-60790554-out
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/clr-debug-pipe-300553-60790554-out 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/cutv-prepare
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/cutv-prepare' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/cutv-prepare'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/cutv-prepare'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/cutv-prepare 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/dotnet-diagnostic-300553-60790554-socket
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/dotnet-diagnostic-300553-60790554-socket 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/newdir
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/newdir' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/newdir'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/newdir'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/newdir 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/nvim-default-socket
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/nvim-default-socket 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/nvim-tree-flicker2.mp4
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/nvim-tree-flicker2.mp4 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/nvim-tree-flicker3.mp4
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/nvim-tree-flicker3.mp4 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/nvim-tree.log
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/nvim-tree.log 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/nvim-tree2.log
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/nvim-tree2.log 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/phpstan
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/phpstan' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/phpstan'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/phpstan'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/phpstan 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/scoped_dirmjvcVY
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/scoped_dirmjvcVY' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/scoped_dirmjvcVY'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/scoped_dirmjvcVY'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/scoped_dirmjvcVY 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/system-commandline-sentinel-files
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/system-commandline-sentinel-files' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/system-commandline-sentinel-files'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/system-commandline-sentinel-files'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/system-commandline-sentinel-files 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-bluetooth.service-2QWpEJ
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-bluetooth.service-2QWpEJ' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-bluetooth.service-2QWpEJ'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-bluetooth.service-2QWpEJ'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-bluetooth.service-2QWpEJ 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-colord.service-5rHXvj
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-colord.service-5rHXvj' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-colord.service-5rHXvj'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-colord.service-5rHXvj'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-colord.service-5rHXvj 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-exim4.service-G3a6FU
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-exim4.service-G3a6FU' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-exim4.service-G3a6FU'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-exim4.service-G3a6FU'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-exim4.service-G3a6FU 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-fwupd.service-ssmXsT
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-fwupd.service-ssmXsT' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-fwupd.service-ssmXsT'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-fwupd.service-ssmXsT'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-fwupd.service-ssmXsT 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-haveged.service-Ckb7TJ
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-haveged.service-Ckb7TJ' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-haveged.service-Ckb7TJ'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-haveged.service-Ckb7TJ'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-haveged.service-Ckb7TJ 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-incron.service-nKKjkV
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-incron.service-nKKjkV' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-incron.service-nKKjkV'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-incron.service-nKKjkV'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-incron.service-nKKjkV 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-lm-sensors.service-Ij7FkH
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-lm-sensors.service-Ij7FkH' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-lm-sensors.service-Ij7FkH'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-lm-sensors.service-Ij7FkH'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-lm-sensors.service-Ij7FkH 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-low-memory-monitor.service-fFQsjX
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-low-memory-monitor.service-fFQsjX' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-low-memory-monitor.service-fFQsjX'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-low-memory-monitor.service-fFQsjX'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-low-memory-monitor.service-fFQsjX 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-pcscd.service-qmkru9
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-pcscd.service-qmkru9' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-pcscd.service-qmkru9'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-pcscd.service-qmkru9'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-pcscd.service-qmkru9 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-polkit.service-fd43WD
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-polkit.service-fd43WD' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-polkit.service-fd43WD'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-polkit.service-fd43WD'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-polkit.service-fd43WD 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-power-profiles-daemon.service-T8CRHy
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-power-profiles-daemon.service-T8CRHy' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-power-profiles-daemon.service-T8CRHy'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-power-profiles-daemon.service-T8CRHy'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-power-profiles-daemon.service-T8CRHy 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-switcheroo-control.service-7xAKT1
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-switcheroo-control.service-7xAKT1' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-switcheroo-control.service-7xAKT1'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-switcheroo-control.service-7xAKT1'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-switcheroo-control.service-7xAKT1 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-systemd-logind.service-LmlgXf
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-systemd-logind.service-LmlgXf' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-systemd-logind.service-LmlgXf'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-systemd-logind.service-LmlgXf'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-systemd-logind.service-LmlgXf 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-upower.service-fSxFAg
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-upower.service-fSxFAg' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-upower.service-fSxFAg'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-upower.service-fSxFAg'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-upower.service-fSxFAg 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/tmp-be1.xpi
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/tmp-be1.xpi 0ms
[2025-08-04 14:45:23] [profile] START populate_children /tmp/tmux-1000
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/tmux-1000' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/tmux-1000'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/tmux-1000'
[2025-08-04 14:45:23] [profile] END   populate_children /tmp/tmux-1000 0ms
[2025-08-04 14:45:23] [profile] END   explore /tmp 29ms
[2025-08-04 14:45:23] [profile] END   core init /tmp 39ms
[2025-08-04 14:45:23] [profile] START view open
[2025-08-04 14:45:23] [profile] START reload /tmp
[2025-08-04 14:45:23] [profile] END   reload /tmp 2ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/.font-unix
[2025-08-04 14:45:23] [git] git -C /tmp/.font-unix rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/.font-unix 2ms
[2025-08-04 14:45:23] [profile] START reload /tmp/.font-unix
[2025-08-04 14:45:23] [profile] END   reload /tmp/.font-unix 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/.ICE-unix
[2025-08-04 14:45:23] [git] git -C /tmp/.ICE-unix rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/.ICE-unix 2ms
[2025-08-04 14:45:23] [profile] START reload /tmp/.ICE-unix
[2025-08-04 14:45:23] [profile] END   reload /tmp/.ICE-unix 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/.org.chromium.Chromium.J43mhS
[2025-08-04 14:45:23] [git] git -C /tmp/.org.chromium.Chromium.J43mhS rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/.org.chromium.Chromium.J43mhS 2ms
[2025-08-04 14:45:23] [profile] START reload /tmp/.org.chromium.Chromium.J43mhS
[2025-08-04 14:45:23] [profile] END   reload /tmp/.org.chromium.Chromium.J43mhS 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/.X11-unix
[2025-08-04 14:45:23] [git] git -C /tmp/.X11-unix rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/.X11-unix 1ms
[2025-08-04 14:45:23] [profile] START reload /tmp/.X11-unix
[2025-08-04 14:45:23] [profile] END   reload /tmp/.X11-unix 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/.XIM-unix
[2025-08-04 14:45:23] [git] git -C /tmp/.XIM-unix rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/.XIM-unix 1ms
[2025-08-04 14:45:23] [profile] START reload /tmp/.XIM-unix
[2025-08-04 14:45:23] [profile] END   reload /tmp/.XIM-unix 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/cutv-prepare
[2025-08-04 14:45:23] [git] git -C /tmp/cutv-prepare rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/cutv-prepare 2ms
[2025-08-04 14:45:23] [profile] START reload /tmp/cutv-prepare
[2025-08-04 14:45:23] [profile] END   reload /tmp/cutv-prepare 1ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/newdir
[2025-08-04 14:45:23] [git] git -C /tmp/newdir rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/newdir 1ms
[2025-08-04 14:45:23] [profile] START reload /tmp/newdir
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/newdir/f' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/newdir/f'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/newdir/f'
[2025-08-04 14:45:23] [profile] END   reload /tmp/newdir 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/phpstan
[2025-08-04 14:45:23] [git] git -C /tmp/phpstan rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/phpstan 1ms
[2025-08-04 14:45:23] [profile] START reload /tmp/phpstan
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/phpstan/cache' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/phpstan/cache'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/phpstan/cache'
[2025-08-04 14:45:23] [profile] END   reload /tmp/phpstan 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/scoped_dirmjvcVY
[2025-08-04 14:45:23] [git] git -C /tmp/scoped_dirmjvcVY rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/scoped_dirmjvcVY 2ms
[2025-08-04 14:45:23] [profile] START reload /tmp/scoped_dirmjvcVY
[2025-08-04 14:45:23] [profile] END   reload /tmp/scoped_dirmjvcVY 1ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/system-commandline-sentinel-files
[2025-08-04 14:45:23] [git] git -C /tmp/system-commandline-sentinel-files rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/system-commandline-sentinel-files 1ms
[2025-08-04 14:45:23] [profile] START reload /tmp/system-commandline-sentinel-files
[2025-08-04 14:45:23] [profile] END   reload /tmp/system-commandline-sentinel-files 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB
[2025-08-04 14:45:23] [git] git -C /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB 1ms
[2025-08-04 14:45:23] [profile] START reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp'
[2025-08-04 14:45:23] [profile] END   reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-bluetooth.service-2QWpEJ
[2025-08-04 14:45:23] [git] git -C /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-bluetooth.service-2QWpEJ rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-bluetooth.service-2QWpEJ 1ms
[2025-08-04 14:45:23] [profile] START reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-bluetooth.service-2QWpEJ
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-bluetooth.service-2QWpEJ/tmp' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-bluetooth.service-2QWpEJ/tmp'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-bluetooth.service-2QWpEJ/tmp'
[2025-08-04 14:45:23] [profile] END   reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-bluetooth.service-2QWpEJ 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-colord.service-5rHXvj
[2025-08-04 14:45:23] [git] git -C /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-colord.service-5rHXvj rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-colord.service-5rHXvj 2ms
[2025-08-04 14:45:23] [profile] START reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-colord.service-5rHXvj
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-colord.service-5rHXvj/tmp' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-colord.service-5rHXvj/tmp'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-colord.service-5rHXvj/tmp'
[2025-08-04 14:45:23] [profile] END   reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-colord.service-5rHXvj 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-exim4.service-G3a6FU
[2025-08-04 14:45:23] [git] git -C /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-exim4.service-G3a6FU rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-exim4.service-G3a6FU 1ms
[2025-08-04 14:45:23] [profile] START reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-exim4.service-G3a6FU
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-exim4.service-G3a6FU/tmp' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-exim4.service-G3a6FU/tmp'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-exim4.service-G3a6FU/tmp'
[2025-08-04 14:45:23] [profile] END   reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-exim4.service-G3a6FU 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-fwupd.service-ssmXsT
[2025-08-04 14:45:23] [git] git -C /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-fwupd.service-ssmXsT rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-fwupd.service-ssmXsT 1ms
[2025-08-04 14:45:23] [profile] START reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-fwupd.service-ssmXsT
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-fwupd.service-ssmXsT/tmp' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-fwupd.service-ssmXsT/tmp'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-fwupd.service-ssmXsT/tmp'
[2025-08-04 14:45:23] [profile] END   reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-fwupd.service-ssmXsT 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-haveged.service-Ckb7TJ
[2025-08-04 14:45:23] [git] git -C /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-haveged.service-Ckb7TJ rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-haveged.service-Ckb7TJ 1ms
[2025-08-04 14:45:23] [profile] START reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-haveged.service-Ckb7TJ
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-haveged.service-Ckb7TJ/tmp' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-haveged.service-Ckb7TJ/tmp'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-haveged.service-Ckb7TJ/tmp'
[2025-08-04 14:45:23] [profile] END   reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-haveged.service-Ckb7TJ 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-incron.service-nKKjkV
[2025-08-04 14:45:23] [git] git -C /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-incron.service-nKKjkV rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-incron.service-nKKjkV 1ms
[2025-08-04 14:45:23] [profile] START reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-incron.service-nKKjkV
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-incron.service-nKKjkV/tmp' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-incron.service-nKKjkV/tmp'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-incron.service-nKKjkV/tmp'
[2025-08-04 14:45:23] [profile] END   reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-incron.service-nKKjkV 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-lm-sensors.service-Ij7FkH
[2025-08-04 14:45:23] [git] git -C /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-lm-sensors.service-Ij7FkH rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-lm-sensors.service-Ij7FkH 1ms
[2025-08-04 14:45:23] [profile] START reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-lm-sensors.service-Ij7FkH
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-lm-sensors.service-Ij7FkH/tmp' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-lm-sensors.service-Ij7FkH/tmp'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-lm-sensors.service-Ij7FkH/tmp'
[2025-08-04 14:45:23] [profile] END   reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-lm-sensors.service-Ij7FkH 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-low-memory-monitor.service-fFQsjX
[2025-08-04 14:45:23] [git] git -C /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-low-memory-monitor.service-fFQsjX rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-low-memory-monitor.service-fFQsjX 1ms
[2025-08-04 14:45:23] [profile] START reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-low-memory-monitor.service-fFQsjX
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-low-memory-monitor.service-fFQsjX/tmp' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-low-memory-monitor.service-fFQsjX/tmp'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-low-memory-monitor.service-fFQsjX/tmp'
[2025-08-04 14:45:23] [profile] END   reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-low-memory-monitor.service-fFQsjX 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-pcscd.service-qmkru9
[2025-08-04 14:45:23] [git] git -C /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-pcscd.service-qmkru9 rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-pcscd.service-qmkru9 1ms
[2025-08-04 14:45:23] [profile] START reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-pcscd.service-qmkru9
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-pcscd.service-qmkru9/tmp' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-pcscd.service-qmkru9/tmp'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-pcscd.service-qmkru9/tmp'
[2025-08-04 14:45:23] [profile] END   reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-pcscd.service-qmkru9 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-polkit.service-fd43WD
[2025-08-04 14:45:23] [git] git -C /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-polkit.service-fd43WD rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-polkit.service-fd43WD 1ms
[2025-08-04 14:45:23] [profile] START reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-polkit.service-fd43WD
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-polkit.service-fd43WD/tmp' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-polkit.service-fd43WD/tmp'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-polkit.service-fd43WD/tmp'
[2025-08-04 14:45:23] [profile] END   reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-polkit.service-fd43WD 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-power-profiles-daemon.service-T8CRHy
[2025-08-04 14:45:23] [git] git -C /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-power-profiles-daemon.service-T8CRHy rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-power-profiles-daemon.service-T8CRHy 2ms
[2025-08-04 14:45:23] [profile] START reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-power-profiles-daemon.service-T8CRHy
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-power-profiles-daemon.service-T8CRHy/tmp' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-power-profiles-daemon.service-T8CRHy/tmp'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-power-profiles-daemon.service-T8CRHy/tmp'
[2025-08-04 14:45:23] [profile] END   reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-power-profiles-daemon.service-T8CRHy 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-switcheroo-control.service-7xAKT1
[2025-08-04 14:45:23] [git] git -C /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-switcheroo-control.service-7xAKT1 rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-switcheroo-control.service-7xAKT1 1ms
[2025-08-04 14:45:23] [profile] START reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-switcheroo-control.service-7xAKT1
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-switcheroo-control.service-7xAKT1/tmp' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-switcheroo-control.service-7xAKT1/tmp'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-switcheroo-control.service-7xAKT1/tmp'
[2025-08-04 14:45:23] [profile] END   reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-switcheroo-control.service-7xAKT1 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-systemd-logind.service-LmlgXf
[2025-08-04 14:45:23] [git] git -C /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-systemd-logind.service-LmlgXf rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-systemd-logind.service-LmlgXf 1ms
[2025-08-04 14:45:23] [profile] START reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-systemd-logind.service-LmlgXf
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-systemd-logind.service-LmlgXf/tmp' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-systemd-logind.service-LmlgXf/tmp'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-systemd-logind.service-LmlgXf/tmp'
[2025-08-04 14:45:23] [profile] END   reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-systemd-logind.service-LmlgXf 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-upower.service-fSxFAg
[2025-08-04 14:45:23] [git] git -C /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-upower.service-fSxFAg rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-upower.service-fSxFAg 2ms
[2025-08-04 14:45:23] [profile] START reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-upower.service-fSxFAg
[2025-08-04 14:45:23] [watcher] Watcher:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-upower.service-fSxFAg/tmp' nil
[2025-08-04 14:45:23] [watcher] Event:create '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-upower.service-fSxFAg/tmp'
[2025-08-04 14:45:23] [watcher] Event:start '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-upower.service-fSxFAg/tmp'
[2025-08-04 14:45:23] [profile] END   reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-upower.service-fSxFAg 0ms
[2025-08-04 14:45:23] [profile] START git toplevel git_dir /tmp/tmux-1000
[2025-08-04 14:45:23] [git] git -C /tmp/tmux-1000 rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:23] [profile] END   git toplevel git_dir /tmp/tmux-1000 1ms
[2025-08-04 14:45:23] [profile] START reload /tmp/tmux-1000
[2025-08-04 14:45:23] [profile] END   reload /tmp/tmux-1000 0ms
[2025-08-04 14:45:23] [profile] START draw
[2025-08-04 14:45:23] [profile] END   draw 6ms
[2025-08-04 14:45:23] [profile] END   view open 89ms
[2025-08-04 14:45:23] [profile] START draw
[2025-08-04 14:45:23] [profile] END   draw 3ms
[2025-08-04 14:45:23] [watcher] event_cb '/tmp' 'nvim-tree.log'
[2025-08-04 14:45:23] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:23] [watcher] node event executing refresh '/tmp'
[2025-08-04 14:45:23] [profile] START reload /tmp
[2025-08-04 14:45:23] [profile] END   reload /tmp 1ms
[2025-08-04 14:45:23] [profile] START draw
[2025-08-04 14:45:23] [profile] END   draw 3ms
[2025-08-04 14:45:24] [watcher] event_cb '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp' 'xdebug.log'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp:31
[2025-08-04 14:45:24] [watcher] event_cb '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp' 'xdebug.log'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp:31
[2025-08-04 14:45:24] [watcher] event_cb '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp' 'xdebug.log'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp:31
[2025-08-04 14:45:24] [watcher] event_cb '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp' 'xdebug.log'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp:31
[2025-08-04 14:45:24] [watcher] event_cb '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp' 'xdebug.log'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp:31
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAI'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAI'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAI'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAI'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAI'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAI'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAI'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAI'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAI'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAI'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAI'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAI'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAI'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAI'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAI'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAI'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAD'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAD'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAI'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAI'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAI'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2070-17c.MAD'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:24] [watcher] event_cb '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp' 'xdebug.log'
[2025-08-04 14:45:24] [watcher] node event scheduled refresh explorer:watch:/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp:31
[2025-08-04 14:45:24] [watcher] node event executing refresh '/tmp'
[2025-08-04 14:45:24] [profile] START reload /tmp
[2025-08-04 14:45:24] [profile] END   reload /tmp 5ms
[2025-08-04 14:45:24] [profile] START draw
[2025-08-04 14:45:24] [profile] END   draw 14ms
[2025-08-04 14:45:24] [watcher] node event executing refresh '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp'
[2025-08-04 14:45:24] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp
[2025-08-04 14:45:24] [git] git -C /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:24] [profile] END   git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp 6ms
[2025-08-04 14:45:24] [profile] START reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp
[2025-08-04 14:45:24] [profile] END   reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp 0ms
[2025-08-04 14:45:24] [profile] START draw
[2025-08-04 14:45:24] [profile] END   draw 3ms
[2025-08-04 14:45:29] [watcher] event_cb '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp' 'xdebug.log'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp:31
[2025-08-04 14:45:29] [watcher] event_cb '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp' 'xdebug.log'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp:31
[2025-08-04 14:45:29] [watcher] event_cb '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp' 'xdebug.log'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp:31
[2025-08-04 14:45:29] [watcher] event_cb '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp' 'xdebug.log'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp:31
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAD'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAD'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAI'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp' '#sql-temptable-26ace-2071-1a1.MAD'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp:1
[2025-08-04 14:45:29] [watcher] event_cb '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp' 'xdebug.log'
[2025-08-04 14:45:29] [watcher] node event scheduled refresh explorer:watch:/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp:31
[2025-08-04 14:45:29] [watcher] node event executing refresh '/tmp'
[2025-08-04 14:45:29] [profile] START reload /tmp
[2025-08-04 14:45:29] [profile] END   reload /tmp 2ms
[2025-08-04 14:45:29] [profile] START draw
[2025-08-04 14:45:29] [profile] END   draw 6ms
[2025-08-04 14:45:29] [watcher] node event executing refresh '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp'
[2025-08-04 14:45:29] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp
[2025-08-04 14:45:29] [git] git -C /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp rev-parse --show-toplevel --absolute-git-dir
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[2025-08-04 14:45:29] [profile] END   git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp 5ms
[2025-08-04 14:45:29] [profile] START reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp
[2025-08-04 14:45:29] [profile] END   reload /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp 0ms
[2025-08-04 14:45:29] [profile] START draw
[2025-08-04 14:45:29] [profile] END   draw 12ms
[2025-08-04 14:45:31] [watcher] event_cb '/tmp' 'nvim-tree.log'
[2025-08-04 14:45:31] [watcher] node event scheduled refresh explorer:watch:/tmp:1

I guess that draw can be relevant:

 # grep draw .xdg/state/nvim/nvim-tree.log
[2025-08-04 14:45:23] [profile] START draw
[2025-08-04 14:45:23] [profile] END   draw 6ms
[2025-08-04 14:45:23] [profile] START draw
[2025-08-04 14:45:23] [profile] END   draw 3ms
[2025-08-04 14:45:23] [profile] START draw
[2025-08-04 14:45:23] [profile] END   draw 3ms
[2025-08-04 14:45:24] [profile] START draw
[2025-08-04 14:45:24] [profile] END   draw 14ms
[2025-08-04 14:45:24] [profile] START draw
[2025-08-04 14:45:24] [profile] END   draw 3ms
[2025-08-04 14:45:29] [profile] START draw
[2025-08-04 14:45:29] [profile] END   draw 6ms
[2025-08-04 14:45:29] [profile] START draw
[2025-08-04 14:45:29] [profile] END   draw 12ms

...but after bisecting I noticed no flickering when using vim.system() (instead of vim.fn.system(), see #3175).

Log looks reasonable, at least in terms of times.

/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp is interesting: xdebug.log and friends are written frequently, however that's reasonable.

What's not OK is that toplevel is executed twice. The value from the first execution should be cached via _toplevels_by_path. Does it keep executing repeatedly as that directory is updated?

[2025-08-04 14:45:29] [watcher] node event executing refresh '/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp'
[2025-08-04 14:45:29] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp
[2025-08-04 14:45:29] [git] git -C /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp rev-parse --show-toplevel --absolute-git-dir

Unfortunately I'm not able to replicate this as root. Attempt:

cd /tmp/systemd-private-e34647231fcc40c1848bda30d51d94da-bluetooth.service-k50JJ9/tmp
for i in $(seq 1 1 500); do sleep 0.1; touch $i; done

No git operations.

It doesn't look like /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp is being deleted / recreated, which was a performance problem we had with yarn modules.

The render times are the best we're going to get; it has to do a lot when drawing.

/tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp is interesting: xdebug.log and friends are written frequently, however that's reasonable.

Good catch! Some request to my web server (repeated every 5 s) causes writing logs to xdebug.log.

In each such case, the toplevel is checked:

 # grep 'START git toplevel git_dir.*apache' .xdg/state/nvim/nvim-tree.log
[2025-08-05 10:41:01] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB
[2025-08-05 10:41:01] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp
[2025-08-05 10:41:06] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp
[2025-08-05 10:41:11] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp
[2025-08-05 10:41:16] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp
[2025-08-05 10:41:21] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp
[2025-08-05 10:41:26] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp
[2025-08-05 10:41:31] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp
[2025-08-05 10:41:37] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp
[2025-08-05 10:41:42] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp
[2025-08-05 10:41:47] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp
[2025-08-05 10:41:52] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp
[2025-08-05 10:41:57] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp
[2025-08-05 10:42:02] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp
[2025-08-05 10:42:07] [profile] START git toplevel git_dir /tmp/systemd-private-669697ed7a974519baa4dbc44b02dbc0-apache2.service-YNafFB/tmp

Now I can reproduce the issue (on Linux) as a regular user with

local thisInitFile = debug.getinfo(1).source:match('@?(.*)')
local cwd = vim.fs.dirname(thisInitFile)
local appname = vim.env.NVIM_APPNAME or 'nvim'

vim.env.XDG_CONFIG_HOME = cwd
vim.env.XDG_DATA_HOME = vim.fs.joinpath(cwd, '.xdg', 'data')
vim.env.XDG_STATE_HOME = vim.fs.joinpath(cwd, '.xdg', 'state')
vim.env.XDG_CACHE_HOME = vim.fs.joinpath(cwd, '.xdg', 'cache')
vim.fn.mkdir(vim.fs.joinpath(vim.env.XDG_CACHE_HOME, appname), 'p')
local stdPathConfig = vim.fn.stdpath('config')

vim.opt.runtimepath:prepend(stdPathConfig)
vim.opt.packpath:prepend(stdPathConfig)

local extuiExists, extui = pcall(require, 'vim._extui')
if extuiExists then
  extui.enable({enable = true, msg = {target = 'msg'}})
end

local function gitClone(url, installPath, branch)
  if vim.fn.isdirectory(installPath) ~= 0 then
    return
  end

  local command = {'git', 'clone', '--', url, installPath}
  if branch then
    table.insert(command, 3, '--branch')
    table.insert(command, 4, branch)
  end

  vim.notify(('Cloning %s dependency into %s...'):format(url, installPath), vim.log.levels.INFO, {})
  local sysObj = vim.system(command, {}):wait()
  if sysObj.code ~= 0 then
    error(sysObj.stderr)
  end
  vim.notify(sysObj.stdout)
  vim.notify(sysObj.stderr, vim.log.levels.WARN)
end

local pluginsPath = vim.fs.joinpath(cwd, 'nvim/pack/plugins/opt')
vim.fn.mkdir(pluginsPath, 'p')
pluginsPath = assert(vim.uv.fs_realpath(pluginsPath))

--- @type table<string, {url:string, branch: string?}>
local plugins = {
  ['nvim-tree'] = {url = 'https://github.com/przepompownia/nvim-tree.lua'},
}

for name, repo in pairs(plugins) do
  local installPath = vim.fs.joinpath(pluginsPath, name)
  gitClone(repo.url, installPath, repo.branch)
  vim.opt.runtimepath:append(installPath)
end

local subdir = '/tmp/apache'
local updatedFile = vim.fs.joinpath(subdir, 'xdebug.log')

vim.fn.mkdir(subdir, 'p')
local timer = assert(vim.uv.new_timer())
timer:start(0, 1000, function ()
  vim.schedule(function ()
    vim.fn.system({'touch', updatedFile})
  end)
end)

vim.api.nvim_create_autocmd({'CursorMoved'}, {
  callback = function (ev)
    print(('%s on %s'):format(ev.event, ev.file))
  end
})

vim.api.nvim_create_autocmd('UIEnter', {
  once = true,
  callback = function ()
    require('nvim-tree').setup({
      log = {
        enable = true,
        truncate = true,
        types = {
          git = true,
          profile = true,
          watcher = true,
        },
      },
    })
    require('nvim-tree.api').tree.open({path = subdir})
  end,
})

I hope you too @alex-courtis

Nice one, I'll try it out this weekend.

Many thanks for the fantastic reproducer!

I'm able to see the {"CursorMoved", "TextChanged"} at every refresh.

It's not restricted to /tmp, it also occurs with local subdir = 'apache'

Unfortnately there is nothing we can do about those events - they are fired when the tree is rendered, when vim.api.nvim_buf_set_lines is called.

What I cannot reproduce are the calls to git toplevel. They are greatly concerning, indicating a deep problem, and they result in a massive performance degredation.

Edit: I'm actually able to see the toplevel calls now, using the minimal template.

The problem does not occur for directories inside a git repo.

It appears that the toplevel caching is not working as expected.

--- Reload one project. Does nothing when no project or path is ignored
---@param toplevel string?
---@param path string? optional path to update only
---@param callback function?
function M.reload_project(toplevel, path, callback)
  local project = M._projects_by_toplevel[toplevel] --[[@as GitProject]]
  log.line("git", "git.reload_project(%s, %s, %s) project='%s'", toplevel, path, callback, project)

shows this when not inside a git repo, resulting in the call to find the toplevel every time:

[git] git.reload_project(nil, /home/alex/src/nvim-tree/r/3077/apache, function: 0x7f1b1dd72b58) project='nil'

inside a git repo it shows this and uses the cached toplevel:

[2025-08-10 13:06:04] [git] git.reload_project(/home/alex/src/linux, /home/alex/src/linux/apache, function: 0x7f9127347e88) project='table: 0x7f9127213c98'

This must be resolved as this problem affects nvim-tree everywhere except inside git repos. I'd be most grateful for your assistance in sorting out this problem.

toplevel caching regressed at #2537

@przepompownia and @henry-hsieh I'd be most grateful if you thoroughly tested this fix branch #3185 which caches git toplevel for untracked directories.

cd /path/to/nvim-tree.lua
git pull
git checkout 3171

When you're finished testing:

git checkout master

@alex-courtis On 3171 (as root) I See no redundant toplevel calls:

[2025-08-11 11:52:19] [profile] START git toplevel git_dir /tmp/apache
[2025-08-11 11:52:33] [profile] START git toplevel git_dir /tmp/systemd-private-fd0dc40e27db48fd9331aa1c088d7007-apache2.service-GVZdnl
[2025-08-11 11:52:34] [profile] START git toplevel git_dir /tmp/systemd-private-fd0dc40e27db48fd9331aa1c088d7007-apache2.service-GVZdnl/tmp

whereas on master I get

[2025-08-11 11:51:02] [profile] START git toplevel git_dir /tmp/apache
[2025-08-11 11:51:21] [profile] START git toplevel git_dir /tmp/systemd-private-fd0dc40e27db48fd9331aa1c088d7007-apache2.service-GVZdnl
[2025-08-11 11:51:22] [profile] START git toplevel git_dir /tmp/systemd-private-fd0dc40e27db48fd9331aa1c088d7007-apache2.service-GVZdnl/tmp
[2025-08-11 11:51:27] [profile] START git toplevel git_dir /tmp/systemd-private-fd0dc40e27db48fd9331aa1c088d7007-apache2.service-GVZdnl/tmp
[2025-08-11 11:51:32] [profile] START git toplevel git_dir /tmp/systemd-private-fd0dc40e27db48fd9331aa1c088d7007-apache2.service-GVZdnl/tmp
[2025-08-11 11:51:37] [profile] START git toplevel git_dir /tmp/systemd-private-fd0dc40e27db48fd9331aa1c088d7007-apache2.service-GVZdnl/tmp
[2025-08-11 11:51:42] [profile] START git toplevel git_dir /tmp/systemd-private-fd0dc40e27db48fd9331aa1c088d7007-apache2.service-GVZdnl/tmp

Thank you for fix that side issue.

Unfortnately there is nothing we can do about those events - they are fired when the tree is rendered, when vim.api.nvim_buf_set_lines is called.

The only idea I can think of is to compare the new buffer content with the current one (to avoid rendering when there are no changes), but I know that could be expensive.

The only idea I can think of is to compare the new buffer content with the current one (to avoid rendering when there are no changes), but I know that could be expensive.

That's quite possible. Renderer:draw() could compare the results of the builder to, say, the previous results.

It could also be threaded: the builder can be executed on a thread, only the actual _draw() must be executed on the main thread.