Skip to content

Commit

Permalink
Set default decay to 3 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
deathbeam committed Feb 21, 2024
1 parent 057be71 commit c9288e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ call setup with no arguments for default.
```lua
require("lspecho").setup {
echo = true, -- Echo progress messages, if set to false you can use .message() to get the current message
decay = 1000, -- Message decay time in milliseconds
decay = 3000, -- Message decay time in milliseconds
}

```
Expand Down
2 changes: 1 addition & 1 deletion lua/lspecho/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ end

M.config = {
echo = true, -- Echo progress messages, if set to false you can use .message() to get the current message
decay = 1000, -- Message decay time in milliseconds
decay = 3000, -- Message decay time in milliseconds
}

function M.message()
Expand Down

0 comments on commit c9288e4

Please sign in to comment.