]> Sergey Matveev's repositories - vim-lsp.git/log
vim-lsp.git
2 years agoci: complacence with clangd-14 and more robust code
shane.xb.qian [Fri, 11 Nov 2022 02:03:59 +0000 (10:03 +0800)]
ci: complacence with clangd-14 and more robust code

2 years agoci: install clangd-14 complacence with ubuntu ver
shane.xb.qian [Fri, 11 Nov 2022 01:51:16 +0000 (09:51 +0800)]
ci: install clangd-14 complacence with ubuntu ver

2 years agofix: (test case) try to specific ubuntu version compliance with clangd
shane.xb.qian [Thu, 10 Nov 2022 03:12:45 +0000 (11:12 +0800)]
fix: (test case) try to specific ubuntu version compliance with clangd

2 years agoMerge pull request #100 from Shane-XB-Qian/pr_chk_of_didsave
Yegappan Lakshmanan [Wed, 9 Nov 2022 16:05:30 +0000 (08:05 -0800)]
Merge pull request #100 from Shane-XB-Qian/pr_chk_of_didsave

fix: correct the 'didSave' check

2 years agofix: correct the 'didSave' check
shane.xb.qian [Wed, 9 Nov 2022 14:44:12 +0000 (22:44 +0800)]
fix: correct the 'didSave' check

2 years agoUpdate the client capabilities. Correctly check for the server capabilities
Yegappan Lakshmanan [Wed, 9 Nov 2022 04:38:56 +0000 (20:38 -0800)]
Update the client capabilities.  Correctly check for the server capabilities

2 years agoMerge pull request #99 from Shane-XB-Qian/pr_codeaction_popup_num_selection
Yegappan Lakshmanan [Mon, 7 Nov 2022 15:09:17 +0000 (07:09 -0800)]
Merge pull request #99 from Shane-XB-Qian/pr_codeaction_popup_num_selection

feat: make code action popup can be selected by item num

2 years agofeat: make code action popup can be selected by item num, and 'h/l' to close popup...
shane.xb.qian [Mon, 7 Nov 2022 07:18:54 +0000 (15:18 +0800)]
feat: make code action popup can be selected by item num, and 'h/l' to close popup as well.

2 years agoAdding lsp servers through VimEnter autocmd with Plug fails for files loaded from...
Yegappan Lakshmanan [Sun, 6 Nov 2022 20:28:42 +0000 (12:28 -0800)]
Adding lsp servers through VimEnter autocmd with Plug fails for files loaded from command line.  Fixes issue #98

2 years agoEmpty options dict for completionProvider in server capabilities not handled correctl...
Yegappan Lakshmanan [Sun, 6 Nov 2022 19:18:17 +0000 (11:18 -0800)]
Empty options dict for completionProvider in server capabilities not handled correctly.  Fixes issue #97

2 years agoMerge pull request #96 from Shane-XB-Qian/pr_correct_codeaction_doc
Yegappan Lakshmanan [Sun, 6 Nov 2022 14:15:11 +0000 (06:15 -0800)]
Merge pull request #96 from Shane-XB-Qian/pr_correct_codeaction_doc

fix: refine code action doc

2 years agofix: refine code action doc
shane.xb.qian [Sun, 6 Nov 2022 07:04:18 +0000 (15:04 +0800)]
fix: refine code action doc

2 years agoAdd support for adding custom handlers for LSP code-action commands
Yegappan Lakshmanan [Sun, 6 Nov 2022 01:11:44 +0000 (18:11 -0700)]
Add support for adding custom handlers for LSP code-action commands

2 years agoSupport command modifiers for LspGotoDefinition, LspGotoDeclaration, etc. commands
Yegappan Lakshmanan [Thu, 3 Nov 2022 05:18:09 +0000 (22:18 -0700)]
Support command modifiers for LspGotoDefinition, LspGotoDeclaration, etc. commands

2 years agoWhen peeking a symbol definition, declaration, etc. use a popup window instead of...
Yegappan Lakshmanan [Wed, 2 Nov 2022 06:11:33 +0000 (23:11 -0700)]
When peeking a symbol definition, declaration, etc. use a popup window instead of a preview window

2 years agoMerge pull request #93 from atgote/autocomplete-with-server-initiated-edits
Yegappan Lakshmanan [Mon, 31 Oct 2022 23:05:13 +0000 (16:05 -0700)]
Merge pull request #93 from atgote/autocomplete-with-server-initiated-edits

Add CompleteDone handler to execute text edits

2 years agoMerge pull request #94 from atgote/main
Yegappan Lakshmanan [Mon, 31 Oct 2022 23:04:49 +0000 (16:04 -0700)]
Merge pull request #94 from atgote/main

initializationOptions and doc corrections

2 years agoinitializationOptions and doc corrections
Andrei Tihonovschi [Mon, 31 Oct 2022 20:28:18 +0000 (22:28 +0200)]
initializationOptions and doc corrections

* Corrected `initializationOptions` field type. According to
  specification this should be of type `LSPAny` - `any`
* Corrected `PHP` language server configuration section
* Added hint on `LspFormat` command since it is not obvious which
  indentation options are used and how indentation may be controlled

2 years agoAdd CompleteDone handler to execute text edits
Andrei Tihonovschi [Mon, 31 Oct 2022 17:58:51 +0000 (19:58 +0200)]
Add CompleteDone handler to execute text edits

Add CompleteDone autocommand handler to verify if activated completion
require additional text edits ('server-initiated edits') and to perform
these.
The additional text edits are used for example when an import is
required for the completed entity.

2 years agoSimplify code by adding a function for send notifications
Yegappan Lakshmanan [Mon, 31 Oct 2022 02:38:16 +0000 (19:38 -0700)]
Simplify code by adding a function for send notifications

2 years agoMerge pull request #90 from atgote/main
Yegappan Lakshmanan [Sun, 30 Oct 2022 19:56:33 +0000 (12:56 -0700)]
Merge pull request #90 from atgote/main

Correct HandleCodeAction behavior for CodeAction

2 years agoMerge branch 'yegappan:main' into main
atgote [Sun, 30 Oct 2022 19:01:39 +0000 (21:01 +0200)]
Merge branch 'yegappan:main' into main

2 years agoAdd support for snippet completion. Tested using the vim-vsnip plugin
Yegappan Lakshmanan [Sun, 30 Oct 2022 18:48:04 +0000 (11:48 -0700)]
Add support for snippet completion.  Tested using the vim-vsnip plugin

2 years agoCorrect HandleCodeAction behavior for CodeAction
Andrei Tihonovschi [Sun, 30 Oct 2022 18:05:29 +0000 (20:05 +0200)]
Correct HandleCodeAction behavior for CodeAction

Both the CodeAction and Command interfaces contain the 'command' member
but these should be handled differently for them. Corrected the
'HandleCodeAction' method to correctly handle these.

2 years agoUse autocmd_add() function to add autocmds
Yegappan Lakshmanan [Sun, 30 Oct 2022 00:41:24 +0000 (17:41 -0700)]
Use autocmd_add() function to add autocmds

2 years agoUse callback functions for async RPC requests to simplify the code
Yegappan Lakshmanan [Sat, 29 Oct 2022 19:35:21 +0000 (12:35 -0700)]
Use callback functions for async RPC requests to simplify the code

2 years agoSnipper support is set to true for completion matches (by mistake). Include plugin...
Yegappan Lakshmanan [Fri, 28 Oct 2022 15:29:11 +0000 (08:29 -0700)]
Snipper support is set to true for completion matches (by mistake).  Include plugin debug information in the help text.  Add debug messages for async RPC calls.  Cleanup async RPC APIs

2 years agoMerge pull request #89 from rcasta74/tracelog
Yegappan Lakshmanan [Fri, 28 Oct 2022 13:34:28 +0000 (06:34 -0700)]
Merge pull request #89 from rcasta74/tracelog

Add sent messages to TraceLog

2 years agoAdd sent messages to TraceLog
Roberto Castagnola [Thu, 27 Oct 2022 12:45:51 +0000 (14:45 +0200)]
Add sent messages to TraceLog

2 years agoUpdate the sign text used for diags
Yegappan Lakshmanan [Fri, 28 Oct 2022 06:03:18 +0000 (23:03 -0700)]
Update the sign text used for diags

2 years agoAdd an async RPC function with a callback function. Use it for hover and signature...
Yegappan Lakshmanan [Fri, 28 Oct 2022 05:59:55 +0000 (22:59 -0700)]
Add an async RPC function with a callback function.  Use it for hover and signature help requests

2 years agoWhen displaying the diag popup, validate the line number. Add a test for LspDiagsUpd...
Yegappan Lakshmanan [Fri, 28 Oct 2022 05:04:13 +0000 (22:04 -0700)]
When displaying the diag popup, validate the line number.  Add a test for LspDiagsUpdated autocmd

2 years agoInvoke the LspDiagsUpdated user-autocmd after the diags are updated
Yegappan Lakshmanan [Thu, 27 Oct 2022 14:44:04 +0000 (07:44 -0700)]
Invoke the LspDiagsUpdated user-autocmd after the diags are updated

2 years agoMerge pull request #86 from D4yvid/feat/code-action-in-popup
Yegappan Lakshmanan [Thu, 27 Oct 2022 01:46:35 +0000 (18:46 -0700)]
Merge pull request #86 from D4yvid/feat/code-action-in-popup

Create custom popup for code action and added a option to enable/disable it

2 years agoUpdate the logic used to jump to a symbol location.
Yegappan Lakshmanan [Thu, 27 Oct 2022 01:07:21 +0000 (18:07 -0700)]
Update the logic used to jump to a symbol location.

2 years agoMerge pull request #83 from Shane-XB-Qian/pr_kept_using_cur_win_if_same_buf
Yegappan Lakshmanan [Thu, 27 Oct 2022 01:01:56 +0000 (18:01 -0700)]
Merge pull request #83 from Shane-XB-Qian/pr_kept_using_cur_win_if_same_buf

fix: not jump if cur one is same buf also

2 years agoCreated a option to use popup menu in code action
D4yvid [Thu, 27 Oct 2022 00:18:32 +0000 (21:18 -0300)]
Created a option to use popup menu in code action

2 years agoRemoved "Print()" method used for debugging
D4yvid [Thu, 27 Oct 2022 00:14:57 +0000 (21:14 -0300)]
Removed "Print()" method used for debugging

2 years agoCreate custom popup for code action and added a option to enable/disable it
D4yvid [Thu, 27 Oct 2022 00:13:19 +0000 (21:13 -0300)]
Create custom popup for code action and added a option to enable/disable it

2 years agoclarify the comment about symbol jump if same buf had in cur win
shane.xb.qian [Wed, 26 Oct 2022 22:51:59 +0000 (06:51 +0800)]
clarify the comment about symbol jump if same buf had in cur win

2 years agoMerge pull request #84 from Shane-XB-Qian/pr_ft_server_status
Yegappan Lakshmanan [Wed, 26 Oct 2022 22:46:51 +0000 (15:46 -0700)]
Merge pull request #84 from Shane-XB-Qian/pr_ft_server_status

Pr ft server status

2 years agorename serverStatus to serverRunning
shane.xb.qian [Wed, 26 Oct 2022 22:06:19 +0000 (06:06 +0800)]
rename serverStatus to serverRunning

2 years agoMerge pull request #85 from D4yvid/fix/fix-newlines-in-popups
Yegappan Lakshmanan [Wed, 26 Oct 2022 20:35:02 +0000 (13:35 -0700)]
Merge pull request #85 from D4yvid/fix/fix-newlines-in-popups

Fix new lines in completion popup and in the completion detail popup

2 years agoUpdate handlers.vim
Dayvid [Wed, 26 Oct 2022 20:06:35 +0000 (17:06 -0300)]
Update handlers.vim

2 years agoFix new lines in completion popup and in the completion detail popup
D4yvid [Wed, 26 Oct 2022 16:51:58 +0000 (13:51 -0300)]
Fix new lines in completion popup and in the completion detail popup

2 years agoIn the plugin source files, set the tabstop option in the modeline
Yegappan Lakshmanan [Wed, 26 Oct 2022 15:40:30 +0000 (08:40 -0700)]
In the plugin source files, set the tabstop option in the modeline

2 years agoAdd a function to use with the 'tagfunc' option to jump to a symbol definition
Yegappan Lakshmanan [Wed, 26 Oct 2022 15:35:26 +0000 (08:35 -0700)]
Add a function to use with the 'tagfunc' option to jump to a symbol definition

2 years agoMerge pull request #82 from Shane-XB-Qian/pr_lspsign_trig_chk
Yegappan Lakshmanan [Wed, 26 Oct 2022 14:25:03 +0000 (07:25 -0700)]
Merge pull request #82 from Shane-XB-Qian/pr_lspsign_trig_chk

fix: check lsp sign trig exist as well

2 years agoUse a popup window by default to display the diag message when using the LspDiagCurre...
Yegappan Lakshmanan [Wed, 26 Oct 2022 14:23:58 +0000 (07:23 -0700)]
Use a popup window by default to display the diag message when using the LspDiagCurrent command

2 years agoMerge pull request #81 from D4yvid/feat/diag-in-popup
Yegappan Lakshmanan [Wed, 26 Oct 2022 13:20:42 +0000 (06:20 -0700)]
Merge pull request #81 from D4yvid/feat/diag-in-popup

Add option to show diagnostics in a popup

2 years agoUpdate autoload/lsp/options.vim
D4yvid [Wed, 26 Oct 2022 12:46:17 +0000 (09:46 -0300)]
Update autoload/lsp/options.vim

2 years agofeat: add LspServerStatus(ft) func to detect ft lsp server was running or not
shane.xb.qian [Wed, 26 Oct 2022 11:34:41 +0000 (19:34 +0800)]
feat: add LspServerStatus(ft) func to detect ft lsp server was running or not

2 years agoissue_5: adding func to get LSP server status for ft.
shane.xb.qian [Wed, 17 Nov 2021 02:57:28 +0000 (10:57 +0800)]
issue_5: adding func to get LSP server status for ft.

2 years agofix: not jump if cur one is same buf also
shane.xb.qian [Mon, 17 Jan 2022 08:09:49 +0000 (16:09 +0800)]
fix: not jump if cur one is same buf also

2 years agoignore *.swp as well (by gitignore)
shane.xb.qian [Wed, 26 Oct 2022 09:01:26 +0000 (17:01 +0800)]
ignore *.swp as well (by gitignore)

2 years agofix: check lsp sign trig exist as well
shane.xb.qian [Wed, 26 Oct 2022 06:51:01 +0000 (14:51 +0800)]
fix: check lsp sign trig exist as well

2 years agoAdd new showDiagInPopup option into lsp.txt at doc/lsp.txt
D4yvid [Wed, 26 Oct 2022 03:24:34 +0000 (00:24 -0300)]
Add new showDiagInPopup option into lsp.txt at doc/lsp.txt

2 years agoAdd option to show diagnostics in a popup
D4yvid [Tue, 25 Oct 2022 21:32:41 +0000 (18:32 -0300)]
Add option to show diagnostics in a popup

2 years agoRefresh the diag message signs when re-enabling diag highlighting
Yegappan Lakshmanan [Tue, 25 Oct 2022 02:50:09 +0000 (19:50 -0700)]
Refresh the diag message signs when re-enabling diag highlighting

2 years agoCode coverage doesn't work for Vim9 scripts. Remove it for now
Yegappan Lakshmanan [Tue, 25 Oct 2022 02:19:10 +0000 (19:19 -0700)]
Code coverage doesn't work for Vim9 scripts.  Remove it for now

2 years agoWait for diag messages from LSP server
Yegappan Lakshmanan [Tue, 25 Oct 2022 02:16:14 +0000 (19:16 -0700)]
Wait for diag messages from LSP server

2 years agoUpdate the help text with details about using the LSP diagnostics. The location...
Yegappan Lakshmanan [Tue, 25 Oct 2022 01:59:25 +0000 (18:59 -0700)]
Update the help text with details about using the LSP diagnostics.  The location list is not reused for LSP diagnostics.  Update the test to wait for the LSP diags to be available.

2 years agoMerge pull request #79 from Shane-XB-Qian/pr_check_trig_char
Yegappan Lakshmanan [Mon, 24 Oct 2022 17:07:37 +0000 (10:07 -0700)]
Merge pull request #79 from Shane-XB-Qian/pr_check_trig_char

fix: check trig char if exist first otherwise broken.

2 years agofix: change to `get()` style.
shane.xb.qian [Mon, 24 Oct 2022 17:01:30 +0000 (01:01 +0800)]
fix: change to `get()` style.

2 years agoMerge branch 'main' of github.com:yegappan/lsp
Yegappan Lakshmanan [Mon, 24 Oct 2022 15:35:37 +0000 (08:35 -0700)]
Merge branch 'main' of github.com:yegappan/lsp

2 years agoAdd test for LspOutline
Yegappan Lakshmanan [Mon, 24 Oct 2022 15:35:22 +0000 (08:35 -0700)]
Add test for LspOutline

2 years agofix: check trig char if exist first otherwise broken.
shane.xb.qian [Mon, 24 Oct 2022 06:35:35 +0000 (14:35 +0800)]
fix: check trig char if exist first otherwise broken.

2 years agoMerge pull request #78 from Shane-XB-Qian/pr_empty_user_data
Yegappan Lakshmanan [Sun, 23 Oct 2022 19:39:50 +0000 (12:39 -0700)]
Merge pull request #78 from Shane-XB-Qian/pr_empty_user_data

fix: user_data maybe empty otherwise mis-type err.

2 years agofix: user_data maybe empty otherwise mis-type err.
shane.xb.qian [Sun, 23 Oct 2022 18:03:03 +0000 (02:03 +0800)]
fix: user_data maybe empty otherwise mis-type err.

2 years agoFix indentation
Yegappan Lakshmanan [Sun, 23 Oct 2022 05:47:50 +0000 (22:47 -0700)]
Fix indentation

2 years agoMerge pull request #77 from rcasta74/lazy_doc
Yegappan Lakshmanan [Sun, 23 Oct 2022 05:25:03 +0000 (22:25 -0700)]
Merge pull request #77 from rcasta74/lazy_doc

Lazy documentation for selected completion item

2 years agoLazy documentation for selected completion item
Roberto Castagnola [Sun, 23 Oct 2022 00:48:45 +0000 (02:48 +0200)]
Lazy documentation for selected completion item

2 years agoSymbol local variable shadows the imported script name
Yegappan Lakshmanan [Sun, 23 Oct 2022 00:34:37 +0000 (17:34 -0700)]
Symbol local variable shadows the imported script name

2 years agoMerge pull request #76 from rcasta74/wait_lspserver_ready
Yegappan Lakshmanan [Sun, 23 Oct 2022 00:24:26 +0000 (17:24 -0700)]
Merge pull request #76 from rcasta74/wait_lspserver_ready

Initialize buffer with autocmd when LSP server not yet ready

2 years agoInitialize buffer with autocmd when LSP server not yet ready
Roberto Castagnola [Sat, 22 Oct 2022 15:05:40 +0000 (17:05 +0200)]
Initialize buffer with autocmd when LSP server not yet ready

2 years agoautocomplete overwrites the dot character in typescript files. Fixes issue #71
Yegappan Lakshmanan [Fri, 21 Oct 2022 16:18:51 +0000 (09:18 -0700)]
autocomplete overwrites the dot character in typescript files.  Fixes issue #71

2 years agoSupport using omni completion when auto completion is also enabled. Support LSP...
Yegappan Lakshmanan [Fri, 21 Oct 2022 16:05:52 +0000 (09:05 -0700)]
Support using omni completion when auto completion is also enabled.  Support LSP server trace message

2 years agoUpdate the steps to register LSP servers when using vim-plug to install the lsp plugin.
Yegappan Lakshmanan [Fri, 21 Oct 2022 03:16:48 +0000 (20:16 -0700)]
Update the steps to register LSP servers when using vim-plug to install the lsp plugin.

2 years agoUse sync RPC for workspace symbol search
Yegappan Lakshmanan [Tue, 18 Oct 2022 04:26:44 +0000 (21:26 -0700)]
Use sync RPC for workspace symbol search

2 years agoRevert to clangd-12 as clangd-14 is not availble in Ubuntu focal
Yegappan Lakshmanan [Sat, 15 Oct 2022 02:13:40 +0000 (19:13 -0700)]
Revert to clangd-12 as clangd-14 is not availble in Ubuntu focal

2 years agoUse sync RPC for the LspIncomingCalls and LspOutgoingCalls commands. Add a test...
Yegappan Lakshmanan [Sat, 15 Oct 2022 02:09:04 +0000 (19:09 -0700)]
Use sync RPC for the LspIncomingCalls and LspOutgoingCalls commands.  Add a test for the :LspIncomingCalls command.  Use clangd-14 for github CI

2 years agoRename lspoptions.vim to options.vim
Yegappan Lakshmanan [Wed, 12 Oct 2022 03:35:44 +0000 (20:35 -0700)]
Rename lspoptions.vim to options.vim

2 years agoUse sync RPC call for showing references
Yegappan Lakshmanan [Wed, 12 Oct 2022 02:11:48 +0000 (19:11 -0700)]
Use sync RPC call for showing references

2 years agoUse a sync RPC for shutting down a LSP server
Yegappan Lakshmanan [Mon, 10 Oct 2022 14:40:01 +0000 (07:40 -0700)]
Use a sync RPC for shutting down a LSP server

2 years agoUse sync RPC for symbol rename operation. Display an error message when a RPC reques...
Yegappan Lakshmanan [Sun, 9 Oct 2022 19:24:33 +0000 (12:24 -0700)]
Use sync RPC for symbol rename operation.  Display an error message when a RPC request fails

2 years agoUse sync RPC call for formatting a file
Yegappan Lakshmanan [Sun, 9 Oct 2022 00:53:41 +0000 (17:53 -0700)]
Use sync RPC call for formatting a file

2 years agoUse sync RPC for SwitchSourceHeader
Yegappan Lakshmanan [Sat, 8 Oct 2022 22:26:47 +0000 (15:26 -0700)]
Use sync RPC for SwitchSourceHeader

2 years agoUse sync RPC for text selection. Update the help text.
Yegappan Lakshmanan [Sat, 8 Oct 2022 15:25:31 +0000 (08:25 -0700)]
Use sync RPC for text selection. Update the help text.

2 years agoUse sync rpc to the LSP server and simplify jumping to a symbol location
Yegappan Lakshmanan [Fri, 7 Oct 2022 16:00:47 +0000 (09:00 -0700)]
Use sync rpc to the LSP server and simplify jumping to a symbol location

2 years agoUse the lsp channel mode to simplify the code
Yegappan Lakshmanan [Thu, 6 Oct 2022 03:39:16 +0000 (20:39 -0700)]
Use the lsp channel mode to simplify the code

2 years agoDon't load the plugin in older vim versions
Yegappan Lakshmanan [Sat, 1 Oct 2022 14:44:20 +0000 (07:44 -0700)]
Don't load the plugin in older vim versions

2 years agoBump up the minimum required Vim version to 9.0 and cleanup the code
Yegappan Lakshmanan [Fri, 30 Sep 2022 01:55:10 +0000 (18:55 -0700)]
Bump up the minimum required Vim version to 9.0 and cleanup the code

2 years agoMerge pull request #70 from atgote/main
Yegappan Lakshmanan [Thu, 29 Sep 2022 14:30:03 +0000 (07:30 -0700)]
Merge pull request #70 from atgote/main

Provide LSP server initializationOptions support

2 years agoProvide LSP server initializationOptions support
Andrei Tihonovschi [Thu, 29 Sep 2022 09:43:47 +0000 (12:43 +0300)]
Provide LSP server initializationOptions support

This is to add support for LSP server initializationOptions.
For me it was important to allow transmission of the licenseKey to the
intelephense PHP language server, however it is a standard field and
other servers configurations may require these too.

Some of configurations are (or may be) expected to be determined by the
editor ('LSP client') however this should require individual per-server
'wrappers' or something similar.

* Add 'initializationOptions' as LSP server configuration option.
* Check if 'initializationOptions' are not empty and if so transmit
  these to the LSP server
* Updated README.md
* Updated plugin documentation

2 years agoUpdate the LSP server configuration help
Yegappan Lakshmanan [Tue, 27 Sep 2022 14:19:25 +0000 (07:19 -0700)]
Update the LSP server configuration help

2 years agoUpdate the LSP server configuration help
Yegappan Lakshmanan [Tue, 27 Sep 2022 14:17:45 +0000 (07:17 -0700)]
Update the LSP server configuration help

2 years agoUpdate LSP server configuration help
Yegappan Lakshmanan [Tue, 27 Sep 2022 14:16:06 +0000 (07:16 -0700)]
Update LSP server configuration help

2 years agoMerge pull request #68 from Shane-XB-Qian/pr_doc_syncinit
Yegappan Lakshmanan [Tue, 27 Sep 2022 14:03:41 +0000 (07:03 -0700)]
Merge pull request #68 from Shane-XB-Qian/pr_doc_syncinit

doc: correct doc about 'syncInit' and refine instr

2 years agodoc: correct doc about 'syncInit' and refine instr
shane.xb.qian [Mon, 26 Sep 2022 03:15:45 +0000 (11:15 +0800)]
doc: correct doc about 'syncInit' and refine instr

2 years agoRename sync option to syncInit and update doc
Yegappan Lakshmanan [Sat, 24 Sep 2022 01:19:55 +0000 (18:19 -0700)]
Rename sync option to syncInit and update doc