| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
@gatesn Hi! I've tried this pull request and I get this error in neovim: [LC] invalid type: null, expected a sequence I'm using LanguageClient-neovim with the following configuration: let g:LanguageClient_serverCommands = {
\ 'rust': ['rustup', 'run', 'stable', 'rls'],
\ 'javascript': ['typescript-language-server', '--stdio'],
\ 'typescript': ['typescript-language-server', '--stdio'],
\ 'javascript.jsx': ['tcp://127.0.0.1:2089'],
\ 'python': ['pyls', '-v', '--log-file', '/tmp/pyls.log'],
\ 'json': ['vscode-json-languageserver', '--stdio'],
\ 'go': ['go-langserver'],
\ 'cpp': ['ccls', '--log-file=/tmp/cq.log'],
\ 'bash': ['bash-language-server', 'start'],
\ 'sh': ['bash-language-server', 'start'],
\ }Unfortunately, nothing is logged in pyls.log when I execute "workspace symbols" in LanguageClient-neovim menu. let g:LanguageClient_loggingFile = expand('/tmp/LanguageClient.log')
let g:LanguageClient_loggingLevel = 'DEBUG'
And here is the log: http://sprunge.us/hK0o1C |
Sorry, something went wrong.
| r'(?P<file>.*)\t' | ||
| r'/\^(?P<code>.*)\$/;"\t' | ||
| r'kind:(?P<type>\w+)\t' | ||
| r'line:(?P<line>\d+)$' |
There was a problem hiding this comment.
Does not consider Windows line endings (\r\n). The regex will fail on Windows files. Suggest changing line to:
r'line:(?P<line>\d+)\s*$'
Sorry, something went wrong.
| tags_dir = self._format_path(tag_file['directory']) | ||
|
|
||
| if not os.path.normpath(document.path).startswith(os.path.normpath(tags_dir)): | ||
| log.debug("Skipping onSave tag generation since %s is not in %s", tag_file_path, tags_dir) |
There was a problem hiding this comment.
Debug message should use document.path instead of tag_file_path
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
No description provided.