Skip to content

Commit 9100846

Browse files
Merge pull request #43 from jonathanmorris180/jm/docs
feat: update docs
2 parents ff1f695 + 6d93e92 commit 9100846

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
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.

doc/salesforce.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ You can pass in a lua table of options to customize the plugin. The default opti
4949
},
5050
}
5151
<
52-
5352
------------------------------------------------------------------------------
5453
*Salesforce.setup()*
5554
`Salesforce.setup`({opts})

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)