Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

plugins.oil.settings.view_options.is_always_hidden

This function defines what will never be shown, even when show_hidden is set.

Type: null or lua function string

Default: null

Plugin default:

''
  function(name, bufnr)
    return false
  end
''

Declared by:

plugins.oil.settings.view_options.is_hidden_file

This function defines what is considered a ‘hidden’ file.

Type: null or lua function string

Default: null

Plugin default:

''
  function(name, bufnr)
    return vim.startswith(name, ".")
  end
''

Declared by: