Skip to content

Commit 04abec4

Browse files
feat: update docs
1 parent ff1f695 commit 04abec4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ There are a number of options available to configure `salesforce.nvim`. See the
114114
```lua
115115
require("salesforce").setup({
116116
debug = {
117-
to_file = false,
118-
to_command_line = false,
117+
to_file = false, -- Can also be toggled with :SalesforceToggleLogFileDebug
118+
to_command_line = false, -- Can also be toggled with :SalesforceToggleCommandLineDebug
119119
},
120120
popup = {
121121
-- The width of the popup window.

lua/salesforce/config.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ function Config:new()
77
-- default config values
88
o.options = {
99
debug = {
10-
to_file = false,
11-
to_command_line = false,
10+
to_file = false, -- Can also be toggled with :SalesforceToggleLogFileDebug
11+
to_command_line = false, -- Can also be toggled with :SalesforceToggleCommandLineDebug
1212
},
1313
popup = {
1414
-- The width of the popup window.

0 commit comments

Comments
 (0)