Keep an eye on those revision descriptions.

Compare changes

Choose any two refs to compare.

Changed files
+8 -2
lua
jj-log
+7 -1
README.md
··· 54 ```lua 55 { 56 'https://tangled.org/bpavuk.neocities.org/jj-log.nvim', 57 - opts = {}, 58 } 59 ``` 60
··· 54 ```lua 55 { 56 'https://tangled.org/bpavuk.neocities.org/jj-log.nvim', 57 + opts = { 58 + -- these are default options 59 + out_waiting = "...", 60 + out_no_jj_repo = "~no_jj_repo~", 61 + out_no_desc = "~no_desc~", 62 + max_desc_length = 47, -- including truncation dots, that's 50 63 + }, 64 } 65 ``` 66
+1 -1
lua/jj-log/init.lua
··· 1 local M = {} 2 3 local defaults = { 4 - out_waiting = "󰔟", 5 out_no_jj_repo = "~no_jj_repo~", 6 out_no_desc = "~no_desc~", 7 max_desc_length = 47,
··· 1 local M = {} 2 3 local defaults = { 4 + out_waiting = "...", 5 out_no_jj_repo = "~no_jj_repo~", 6 out_no_desc = "~no_desc~", 7 max_desc_length = 47,