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

programs.visidata.enable

Whether to enable Visidata.

Type: boolean

Default:

false

Example:

true

Declared by:

programs.visidata.package

The visidata package to use.

Type: null or package

Default:

pkgs.visidata

Declared by:

programs.visidata.visidatarc

Configuration settings and Python function declarations to be written to ~/.visidatarc. All available options can be found here: https://www.visidata.org/docs/.

Type: strings concatenated with ā€œ\nā€

Default:

""

Example:

''
  options.min_memory_mb=100  # stop processing without 100MB free
  
  bindkey('0', 'go-leftmost')   # alias '0' to go to first column, like vim
  
  def median(values):
      L = sorted(values)
      return L[len(L)//2]
  
  vd.aggregator('median', median)
''

Declared by: