Skip to content

Commit

Permalink
Merge pull request #43 from jonathanmorris180/jm/docs
Browse files Browse the repository at this point in the history
feat: update docs
  • Loading branch information
jonathanmorris180 authored Jul 9, 2024
2 parents ff1f695 + 6d93e92 commit 9100846
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ There are a number of options available to configure `salesforce.nvim`. See the
```lua
require("salesforce").setup({
debug = {
to_file = false,
to_command_line = false,
to_file = false, -- Can also be toggled with :SalesforceToggleLogFileDebug
to_command_line = false, -- Can also be toggled with :SalesforceToggleCommandLineDebug
},
popup = {
-- The width of the popup window.
Expand Down
1 change: 0 additions & 1 deletion doc/salesforce.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ You can pass in a lua table of options to customize the plugin. The default opti
},
}
<

------------------------------------------------------------------------------
*Salesforce.setup()*
`Salesforce.setup`({opts})
Expand Down
4 changes: 2 additions & 2 deletions lua/salesforce/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ function Config:new()
-- default config values
o.options = {
debug = {
to_file = false,
to_command_line = false,
to_file = false, -- Can also be toggled with :SalesforceToggleLogFileDebug
to_command_line = false, -- Can also be toggled with :SalesforceToggleCommandLineDebug
},
popup = {
-- The width of the popup window.
Expand Down

0 comments on commit 9100846

Please sign in to comment.