Skip to content
This repository has been archived by the owner on Oct 24, 2021. It is now read-only.

feat(): Use location list instead of quickfix list #51

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rplugin/python3/nvim-typescript/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@ def tsgeterr(self):
'col': error['start']['offset'],
'text': error['text']
})
self.vim.call('setqflist', errorLoc, 'r', 'Errors')
self.vim.command('cwindow')
self.vim.call('setloclist', 0, errorLoc, 'r', 'Errors')
self.vim.command('lwindow')
else:
self.printError('Server is not Running')

Expand Down