Skip to content

Commit

Permalink
fix: update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmorris180 committed Jan 17, 2024
1 parent 8664c13 commit 068901f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,10 @@ There are a number of options available to configure `salesforce.nvim`. See the
```lua
require("salesforce").setup({
-- Prints useful logs about what events are triggered, as well as outputs of the Salesforce CLI
debug = false,
debug = {
to_file = false,
to_console = false,
},
popup = {
-- The width of the popup window.
width = 100,
Expand Down
6 changes: 4 additions & 2 deletions doc/salesforce.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@ To use this plugin, you must first setup your project by running `require("sales
You can pass in a lua table of options to customize the plugin. The default options are:
>
{
-- Prints useful logs about what events are triggered, as well as outputs of the Salesforce CLI
debug = false,
debug = {
to_file = false, -- logs debug messages to a file at vim.fn.stdpath("cache") .. "/salesforce.log"
to_console = false,
},
popup = {
-- The width of the popup window.
width = 100,
Expand Down
6 changes: 4 additions & 2 deletions lua/salesforce/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@
--- You can pass in a lua table of options to customize the plugin. The default options are:
--- >
--- {
--- -- Prints useful logs about what events are triggered, as well as outputs of the Salesforce CLI
--- debug = false,
--- debug = {
--- to_file = false, -- logs debug messages to a file at vim.fn.stdpath("cache") .. "/salesforce.log"
--- to_console = false,
--- },
--- popup = {
--- -- The width of the popup window.
--- width = 100,
Expand Down

0 comments on commit 068901f

Please sign in to comment.