Replies: 1 comment 5 replies
-
Setting the default date format: The date format can be specified by the "date" option. It can be specified using This Flog argument corresponds to the You can view the documentation for this Git argument by running the command In general, when the documentation available in There are several special formats for Custom date formats: Of particular interest to you may be the
So for example in Flog, you can do something like Changing the order of data: To change the order of data in the log, use the "format" option. This corresponds to the For the format you've outlined - commit hash, author, msg, date - use the format option value The g:flog_order_types setting: This setting is used to change how order options are cycled through when cycling through them with Example config: Putting it all together: let g:flog_permanent_default_opts = {
\ 'date': '%Y-%m-%d',
\ 'format': '%h %an %s %ad',
\ } Hope that helps. |
Beta Was this translation helpful? Give feedback.
-
Tried a few different ways two things: the date format to a shorter format, and the order of data ideally to: commit hash, author, msg, date.
Tried messing with these vars but seems to have no effect:
Suggestions?
Beta Was this translation helpful? Give feedback.
All reactions