Skip to content

Commit

Permalink
refactor(config): fields are optional
Browse files Browse the repository at this point in the history
this is how they should have been from the start
  • Loading branch information
mikavilpas committed Apr 7, 2024
1 parent 0b4f72f commit 97ab90b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lua/yazi/types.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---@class YaziConfig
---@field public open_for_directories boolean
---@field public chosen_file_path string "the path to a temporary file that will be created by yazi to store the chosen file path"
---@field public events_file_path string "the path to a temporary file that will be created by yazi to store events"
---@field public open_for_directories? boolean
---@field public chosen_file_path? string "the path to a temporary file that will be created by yazi to store the chosen file path"
---@field public events_file_path? string "the path to a temporary file that will be created by yazi to store events"

---@class YaziRenameEvent
---@field public type "rename"
Expand Down

0 comments on commit 97ab90b

Please sign in to comment.