Skip to content
Discussion options

You must be logged in to vote

Fill is skipping your blank cells because it's looking for cells containing Visidata's null value. The null value is almost always Python's None, which is drawn on screen as . Your cells are blank, which means they contain the empty string ''.

The way I would do it is, change those cells to contain None first: navigate to one of your blank cells. Press , to select all the cells with the same value, then set them to None via gzd (delete-cells). Then press f.

Alternatively, you could change what Visidata considers to be the null value, to the empty string instead of None:
On startup: vd --null-value=''
Or by adding to your .visidatarc: options.null_value = ''
Or, to modify it just for one …

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by mhoban
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants