Replies: 1 comment 1 reply
-
hello. this is a really specific case. dont know if a lot of people would use something like this. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Recently a friend showed me a feature of Microsoft Excel that is pretty nifty, and saves time for a class of sheets. One can define drop down menu for cell, and click on the cell to show the possible valid values. Perhaps this can be implemented using json. For instance, user will be able to specify a directory to lookup, and that directory will have jsons that just have
"key":"value"
pairs. If a user clicks a certain key over a cell, it becomes a drop-down (i.e form) cell, and will show the name of jsons (from the user specified directory) that user can select from. After a json has been assigned to a cell, if a user hits a key, they can select a key, and it's a value will be plugged in to the cell. Copying the cell to other cells copies the json/value and user can change the value from the drop-down again. Thanks!An extension could be to allow an external program to help with selection of key/value for a cell, like via fzf, to leverage the search capability of fzf (to search key/values in json).
Beta Was this translation helpful? Give feedback.
All reactions